diff --git a/db/GMRustyHearts.sql b/db/GMRustyHearts.sql
new file mode 100644
index 0000000..b11164d
--- /dev/null
+++ b/db/GMRustyHearts.sql
@@ -0,0 +1,415 @@
+/*
+ Navicat Premium Data Transfer
+
+ Source Server : RH VM
+ Source Server Type : SQL Server
+ Source Server Version : 16001105
+ Source Host : 192.168.100.202:1433
+ Source Catalog : GMRustyHearts
+ Source Schema : dbo
+
+ Target Server Type : SQL Server
+ Target Server Version : 16001105
+ File Encoding : 65001
+
+ Date: 12/12/2023 01:43:52
+*/
+
+-- ----------------------------
+-- Table structure for Admin_Sys_Param
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Admin_Sys_Param]') AND type IN ('U'))
+ DROP TABLE [dbo].[Admin_Sys_Param]
+GO
+
+CREATE TABLE [dbo].[Admin_Sys_Param] (
+ [seq] int IDENTITY(1,1) NOT NULL,
+ [param_name] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [param_value] nvarchar(255) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [remark1] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [remark2] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [read_yn] int NULL,
+ [regdate] datetime NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Admin_Sys_Param] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Admin_Sys_Param
+-- ----------------------------
+SET IDENTITY_INSERT [dbo].[Admin_Sys_Param] ON
+GO
+
+SET IDENTITY_INSERT [dbo].[Admin_Sys_Param] OFF
+GO
+
+
+-- ----------------------------
+-- Table structure for AdminRoles
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[AdminRoles]') AND type IN ('U'))
+ DROP TABLE [dbo].[AdminRoles]
+GO
+
+CREATE TABLE [dbo].[AdminRoles] (
+ [Idx] int IDENTITY(1,1) NOT NULL,
+ [AdminID] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [AdminPW] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [AdminRoles] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [RegDate] datetime DEFAULT getdate() NOT NULL,
+ [RegName] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [AdminYN] nchar(2) COLLATE Korean_Wansung_CI_AS DEFAULT N'N' NULL,
+ [accessControlYN] nvarchar(2) COLLATE Korean_Wansung_CI_AS DEFAULT 'N' NULL,
+ [ip_1] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL,
+ [ip_2] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL,
+ [ip_3] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL
+)
+GO
+
+ALTER TABLE [dbo].[AdminRoles] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of AdminRoles
+-- ----------------------------
+SET IDENTITY_INSERT [dbo].[AdminRoles] ON
+GO
+
+INSERT INTO [dbo].[AdminRoles] ([Idx], [AdminID], [AdminPW], [AdminRoles], [RegDate], [RegName], [AdminYN], [accessControlYN], [ip_1], [ip_2], [ip_3]) VALUES (N'16', N'admin', N'admin', N'1', N'2022-06-24 07:27:34.730', N'admin', N' Y', N'N', N'', N'', N'')
+GO
+
+SET IDENTITY_INSERT [dbo].[AdminRoles] OFF
+GO
+
+
+-- ----------------------------
+-- Table structure for GMAudit
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[GMAudit]') AND type IN ('U'))
+ DROP TABLE [dbo].[GMAudit]
+GO
+
+CREATE TABLE [dbo].[GMAudit] (
+ [audit_id] uniqueidentifier DEFAULT newid() NOT NULL,
+ [AdminID] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [world_index] int NOT NULL,
+ [bcust_id] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT N'None' NULL,
+ [character_id] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [char_name] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [Type] nvarchar(100) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [Modify] nvarchar(1500) COLLATE Korean_Wansung_CI_AS NULL,
+ [Memo] nvarchar(200) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [date] datetime DEFAULT getdate() NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[GMAudit] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of GMAudit
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for GMInfoTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[GMInfoTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[GMInfoTable]
+GO
+
+CREATE TABLE [dbo].[GMInfoTable] (
+ [gm_id] int NOT NULL,
+ [name] nvarchar(16) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [pass] nvarchar(16) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [permission] int NOT NULL,
+ [logout_time] datetime NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[GMInfoTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of GMInfoTable
+-- ----------------------------
+INSERT INTO [dbo].[GMInfoTable] ([gm_id], [name], [pass], [permission], [logout_time]) VALUES (N'1', N'admin', N'admin', N'1', N'2022-03-02 22:20:41.000')
+GO
+
+
+-- ----------------------------
+-- Table structure for GMLoginLog
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[GMLoginLog]') AND type IN ('U'))
+ DROP TABLE [dbo].[GMLoginLog]
+GO
+
+CREATE TABLE [dbo].[GMLoginLog] (
+ [Idx] bigint IDENTITY(1,1) NOT NULL,
+ [AdminID] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [RegName] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [accessIP] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [successYN] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [LogDate] datetime DEFAULT getdate() NOT NULL,
+ [type] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT ' ' NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[GMLoginLog] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of GMLoginLog
+-- ----------------------------
+SET IDENTITY_INSERT [dbo].[GMLoginLog] ON
+GO
+
+SET IDENTITY_INSERT [dbo].[GMLoginLog] OFF
+GO
+
+
+-- ----------------------------
+-- Table structure for POPUP
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[POPUP]') AND type IN ('U'))
+ DROP TABLE [dbo].[POPUP]
+GO
+
+CREATE TABLE [dbo].[POPUP] (
+ [idx] int IDENTITY(1,1) NOT NULL,
+ [title] nvarchar(255) COLLATE Korean_Wansung_CI_AS NULL,
+ [width] int NULL,
+ [height] int NULL,
+ [v_width] int NULL,
+ [v_height] int NULL,
+ [memo] text COLLATE Korean_Wansung_CI_AS NULL,
+ [apply] nchar(2) COLLATE Korean_Wansung_CI_AS NULL,
+ [wdate] datetime NULL
+)
+GO
+
+ALTER TABLE [dbo].[POPUP] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of POPUP
+-- ----------------------------
+SET IDENTITY_INSERT [dbo].[POPUP] ON
+GO
+
+SET IDENTITY_INSERT [dbo].[POPUP] OFF
+GO
+
+
+-- ----------------------------
+-- Table structure for WorldList
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[WorldList]') AND type IN ('U'))
+ DROP TABLE [dbo].[WorldList]
+GO
+
+CREATE TABLE [dbo].[WorldList] (
+ [world_id] tinyint NOT NULL,
+ [world_name] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [db_id] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL,
+ [db_pw] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL,
+ [db_catalog] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL,
+ [db_ip] nvarchar(50) COLLATE Korean_Wansung_CI_AS DEFAULT '' NULL
+)
+GO
+
+ALTER TABLE [dbo].[WorldList] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of WorldList
+-- ----------------------------
+INSERT INTO [dbo].[WorldList] ([world_id], [world_name], [db_id], [db_pw], [db_catalog], [db_ip]) VALUES (N'1', N'Ragezone', N'sa', N'RustyHearts', N'RustyHearts_Auth', N'127.0.0.1')
+GO
+
+
+-- ----------------------------
+-- Table structure for X_6217
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[X_6217]') AND type IN ('U'))
+ DROP TABLE [dbo].[X_6217]
+GO
+
+CREATE TABLE [dbo].[X_6217] (
+ [id] int IDENTITY(1,1) NOT NULL,
+ [ResultTxt] nvarchar(4000) COLLATE Korean_Wansung_CI_AS NULL
+)
+GO
+
+ALTER TABLE [dbo].[X_6217] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of X_6217
+-- ----------------------------
+SET IDENTITY_INSERT [dbo].[X_6217] ON
+GO
+
+SET IDENTITY_INSERT [dbo].[X_6217] OFF
+GO
+
+
+-- ----------------------------
+-- procedure structure for CreateCalendar
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[CreateCalendar]') AND type IN ('P', 'PC', 'RF', 'X'))
+ DROP PROCEDURE[dbo].[CreateCalendar]
+GO
+
+CREATE PROCEDURE [dbo].[CreateCalendar]
+/************************************************************************************************************
+ Purpose:
+ Given a start date and an end date, create a calendar of dates that easily traverses months and years. Is
+ capable of generating up to 179 years worth of calendar by month in any given run.
+ Usage Notes:
+ 1. End date parameter is optional... if not provided, the start date will be used to return that one month.
+ 2. Of the two input paramters, the lowest (earliest) date will be used as the start date regardless of the
+ order provided.
+ 3. Returns a single result set containing all dates.
+ 4. Does NOT use a Cursor, While Loop, Temp Table, or Table variable so that even really picky DBA's won't
+ reject the code.
+ 5. Because only set-based code was used, returns 10 years worth of calendar in about 230 milliseconds.
+ A full year takes a scant 76 milliseconds and a single month takes 63 milliseconds. A hundred-year
+ calendar takes only 6.3 seconds.
+ 6. The start date does NOT need to be the first of the month and the end date does NOT need to be the last
+ day of the month. The internal calculations will "auto-magically" include the whole month for both the
+ start and end dates as well as all months in between.
+ Revision History:
+ Rev 00 - 08/13/2007 - Jeff Moden - Initial creation and unit test.
+************************************************************************************************************/
+--===== Declare the input parameters
+ @pStartDate DATETIME, --Any date (can include time) in the desired start month
+ @pEndDate DATETIME = @pStartDate --Any date (can include time) in the desired end month
+ AS
+--===== Create the correct environment
+ SET NOCOUNT ON --Suppress the auto-display of rowcounts to prevent false echos on GUI's
+ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED --Same as putting WITH (NOLOCK) on tables in query
+--===== Create the base date that all the calculations rely on (is a Monday)
+DECLARE @BaseDate DATETIME
+ SET @BaseDate = '1753-01-01'
+--===== Make sure the inputs are in the correct order (start date must always be the earliest date)
+ IF @pEndDate < @pStartDate
+ BEGIN
+ DECLARE @Swap DATETIME
+ SELECT @Swap = @pStartDate,
+ @pStartDate = @pEndDate,
+ @pEndDate = @Swap
+ END
+--===== Modify the start to start on the first of the same month and the end date to end on the last day
+ -- of the same month.
+ SET @pStartDate = DATEADD(mm,DATEDIFF(mm,@BaseDate,@pStartDate),@BaseDate)
+ SET @pEndDate = DATEADD(mm,DATEDIFF(mm,@BaseDate,@pEndDate)+1,@BaseDate)-1
+
+--===== Create the calendar without loops, cursors, or temp tables
+ SELECT MAX(DATENAME(yy,d.TheDate)) AS [Year],
+ MAX(LEFT(DATENAME(mm,d.TheDate),3))AS [Month],
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '월요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Mon,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '화요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Tue,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '수요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Wed,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '목요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Thu,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '금요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Fri,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '토요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Sat,
+ MAX(CASE WHEN DATENAME(dw,d.TheDate) = '일요일' THEN DATENAME(dd,d.TheDate) ELSE '' END) AS Sun
+ FROM (--==== Derived table "d" finds all dates for the given range of dates up to 65535 days apart
+ SELECT YEAR(@pStartDate+n.Number) AS TheYear,
+ MONTH(@pStartDate+n.Number) AS TheMonth,
+ DATEDIFF(dd,@BaseDate,@pStartDate+n.Number)/7 AS TheWeek,
+ @pStartDate+n.Number AS TheDate
+ FROM (--==== Derived table "n" creates numbers from 0 to 65535 (about 179 years worth of days)
+ SELECT t1.Number*256+t2.Number AS Number
+ FROM Master.dbo.spt_Values t1,
+ Master.dbo.spt_Values t2
+ WHERE t1.Type = 'P'
+ AND t2.Type = 'P'
+ )n
+ WHERE @pStartDate+n.Number <= @pEndDate
+ )d
+ GROUP BY d.TheYear,d.TheMonth,d.TheWeek
+ ORDER BY d.TheYear,d.TheMonth,d.TheWeek
+GO
+
+
+-- ----------------------------
+-- Auto increment value for Admin_Sys_Param
+-- ----------------------------
+DBCC CHECKIDENT ('[dbo].[Admin_Sys_Param]', RESEED, 1)
+GO
+
+
+-- ----------------------------
+-- Primary Key structure for table Admin_Sys_Param
+-- ----------------------------
+ALTER TABLE [dbo].[Admin_Sys_Param] ADD CONSTRAINT [PK_Admin_Sys_Param] PRIMARY KEY CLUSTERED ([seq])
+WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
+ON [PRIMARY]
+GO
+
+
+-- ----------------------------
+-- Auto increment value for AdminRoles
+-- ----------------------------
+DBCC CHECKIDENT ('[dbo].[AdminRoles]', RESEED, 16)
+GO
+
+
+-- ----------------------------
+-- Uniques structure for table GMInfoTable
+-- ----------------------------
+ALTER TABLE [dbo].[GMInfoTable] ADD CONSTRAINT [UQ__GMInfoTa__72E12F1B09DE7BCC] UNIQUE NONCLUSTERED ([name] ASC)
+WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
+ON [PRIMARY]
+GO
+
+
+-- ----------------------------
+-- Primary Key structure for table GMInfoTable
+-- ----------------------------
+ALTER TABLE [dbo].[GMInfoTable] ADD CONSTRAINT [PK__GMInfoTa__49B921C107020F21] PRIMARY KEY CLUSTERED ([gm_id])
+WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
+ON [PRIMARY]
+GO
+
+
+-- ----------------------------
+-- Auto increment value for GMLoginLog
+-- ----------------------------
+DBCC CHECKIDENT ('[dbo].[GMLoginLog]', RESEED, 1)
+GO
+
+
+-- ----------------------------
+-- Auto increment value for POPUP
+-- ----------------------------
+DBCC CHECKIDENT ('[dbo].[POPUP]', RESEED, 6)
+GO
+
+
+-- ----------------------------
+-- Primary Key structure for table WorldList
+-- ----------------------------
+ALTER TABLE [dbo].[WorldList] ADD CONSTRAINT [PK_WorldList] PRIMARY KEY CLUSTERED ([world_id])
+WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
+ON [PRIMARY]
+GO
+
+
+-- ----------------------------
+-- Auto increment value for X_6217
+-- ----------------------------
+DBCC CHECKIDENT ('[dbo].[X_6217]', RESEED, 1)
+GO
+
diff --git a/db/RustyHearts.sql b/db/RustyHearts.sql
new file mode 100644
index 0000000..ca24bc5
--- /dev/null
+++ b/db/RustyHearts.sql
@@ -0,0 +1,209872 @@
+/*
+ Navicat Premium Data Transfer
+
+ Source Server : RH VM
+ Source Server Type : SQL Server
+ Source Server Version : 16001105
+ Source Host : 192.168.100.202:1433
+ Source Catalog : RustyHearts
+ Source Schema : dbo
+
+ Target Server Type : SQL Server
+ Target Server Version : 16001105
+ File Encoding : 65001
+
+ Date: 12/12/2023 01:44:19
+*/
+
+
+-- ----------------------------
+-- Table structure for AuctionListTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[AuctionListTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[AuctionListTable]
+GO
+
+CREATE TABLE [dbo].[AuctionListTable] (
+ [seller_name] nvarchar(15) COLLATE Chinese_PRC_CI_AS DEFAULT '' NOT NULL,
+ [item_uid] uniqueidentifier NOT NULL,
+ [character_id] uniqueidentifier NOT NULL,
+ [auth_id] uniqueidentifier NOT NULL,
+ [page_index] int NOT NULL,
+ [slot_index] int NOT NULL,
+ [code] int NOT NULL,
+ [use_cnt] int NOT NULL,
+ [remain_time] int NOT NULL,
+ [create_time] datetime NOT NULL,
+ [update_time] datetime NOT NULL,
+ [gcode] int NOT NULL,
+ [durability] int NOT NULL,
+ [enhance_level] int NOT NULL,
+ [option_1_code] int NOT NULL,
+ [option_1_value] int NOT NULL,
+ [option_2_code] int NOT NULL,
+ [option_2_value] int NOT NULL,
+ [option_3_code] int NOT NULL,
+ [option_3_value] int NOT NULL,
+ [option_group] int NOT NULL,
+ [ReconNum] int NOT NULL,
+ [ReconState] tinyint NOT NULL,
+ [socket_count] int NOT NULL,
+ [socket_1_code] int NOT NULL,
+ [socket_1_value] int NOT NULL,
+ [socket_2_code] int NOT NULL,
+ [socket_2_value] int NOT NULL,
+ [socket_3_code] int NOT NULL,
+ [socket_3_value] int NOT NULL,
+ [expire_time] int DEFAULT 0 NOT NULL,
+ [selling_price] int DEFAULT 100000 NOT NULL,
+ [start_price] int DEFAULT 0 NOT NULL,
+ [bidder_name] nvarchar(15) COLLATE Chinese_PRC_CI_AS DEFAULT '' NOT NULL,
+ [bidder_auth_uid] uniqueidentifier NULL,
+ [bidder_uid] uniqueidentifier NULL,
+ [bid_price] int DEFAULT 0 NOT NULL,
+ [periodtime] int DEFAULT 24 NOT NULL,
+ [registertime] bigint DEFAULT 123456 NOT NULL,
+ [activity_value] int DEFAULT 0 NOT NULL,
+ [socket_1_color] tinyint DEFAULT 0 NOT NULL,
+ [socket_2_color] tinyint DEFAULT 0 NOT NULL,
+ [socket_3_color] tinyint DEFAULT 0 NOT NULL,
+ [item_name] nvarchar(30) COLLATE Chinese_PRC_CI_AS DEFAULT '' NOT NULL,
+ [item_level] tinyint DEFAULT 0 NOT NULL,
+ [item_category] int DEFAULT 0 NOT NULL,
+ [is_seizure] tinyint DEFAULT 0 NOT NULL,
+ [rank] tinyint DEFAULT 0 NOT NULL,
+ [acquireroute] tinyint DEFAULT 0 NOT NULL,
+ [physical] int DEFAULT 0 NOT NULL,
+ [magical] int DEFAULT 0 NOT NULL,
+ [durabilitymax] int DEFAULT 0 NOT NULL,
+ [weight] int DEFAULT 0 NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[AuctionListTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of AuctionListTable
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for Base_CashProduct
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_CashProduct]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_CashProduct]
+GO
+
+CREATE TABLE [dbo].[Base_CashProduct] (
+ [id] int DEFAULT 0 NOT NULL,
+ [name] nvarchar(128) COLLATE Korean_Wansung_CI_AS DEFAULT '' NOT NULL,
+ [type] tinyint DEFAULT 0 NOT NULL,
+ [typevalue] int DEFAULT 0 NOT NULL,
+ [price] int DEFAULT 0 NOT NULL,
+ [index] bigint DEFAULT 0 NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_CashProduct] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_CashProduct
+-- ----------------------------
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000095', N'Pro Booster Pack', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000205', N'Elite Booster Pack', N'1', N'43200', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000085', N'Level Up Package (90 Days)', N'1', N'129600', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000096', N'Gold Package (7 Days)', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000097', N'Master Package (7 Days)', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000095', N'Pro Booster Pack', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000330', N'Extreme Booster Pack', N'1', N'43200', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000264', N'Halloween Festival Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000265', N'Halloween Festival Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000266', N'Halloween Festival Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000267', N'Halloween Festival Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000095', N'Pro Booster Pack', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000249', N'Thanksgiving Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000250', N'Thanksgiving Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000251', N'Thanksgiving Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000252', N'Thanksgiving Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000256', N'Sky Blue Bird Costume Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000299', N'Holiday Package [Frantz]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000300', N'Holiday Package [Angela]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000301', N'Holiday Package [Tude]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000302', N'Holiday Package [Natasha]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000303', N'Holiday Package [Roselle]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000304', N'Holiday Package [Edgar]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000305', N'Holiday Package [Meilin]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000098', N'Express Booster Pack', N'1', N'4320', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000312', N'New Traditional Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000313', N'New Traditional Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000314', N'New Traditional Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000315', N'New Traditional Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000316', N'New Traditional Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000317', N'New Traditional Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000318', N'New Traditional Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000319', N'New Traditional Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000268', N'Halloween Festival Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000273', N'Black Queen Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000298', N'Purple Winter Costume Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000327', N'Black Floral Dress Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000368', N'Red Gold Box [Frantz]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000371', N'Crimson Conjurer Box [Angela]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000372', N'Little Blue-Blood Box [Edgar]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000373', N'Silver Sage Box [Tude]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000374', N'Blue Star Box [Meilin]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000375', N'Scarlet Chic Box [Natasha]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000410', N'Summer Scuba Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000411', N'Summer Scuba Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000412', N'Summer Scuba Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000413', N'Summer Scuba Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000414', N'Summer Scuba Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000415', N'Summer Scuba Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000416', N'Summer Scuba Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000417', N'Summer Scuba Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000492', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000493', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000494', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000495', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000496', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000497', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000498', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000499', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000511', N'Inuit Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000512', N'Inuit Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000513', N'Inuit Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000514', N'Inuit Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000515', N'Inuit Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000516', N'Inuit Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000517', N'Inuit Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000518', N'Inuit Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018011', N'White Cowboy Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018013', N'White Cowboy Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018010', N'White Cowboy Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018008', N'White Cowboy Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018009', N'White Cowboy Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018012', N'White Cowboy Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018014', N'White Cowboy Hat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009004', N'Brown Cowboy Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009006', N'Brown Cowboy Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009003', N'Brown Cowboy Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009001', N'Brown Cowboy Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009002', N'Brown Cowboy Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009005', N'Brown Cowboy Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51009007', N'Brown Cowboy Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004004', N'Navy Cowboy Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004006', N'Navy Cowboy Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004003', N'Navy Cowboy Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004001', N'Navy Cowboy Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004002', N'Navy Cowboy Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004005', N'Navy Cowboy Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51004007', N'Navy Cowboy Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005004', N'Imperial Officer Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005006', N'Imperial Officer Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005003', N'Imperial Officer Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005001', N'Imperial Officer Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005002', N'Imperial Officer Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005005', N'Imperial Officer Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51005007', N'Imperial Officer Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014004', N'Pink Dining Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014006', N'Pink Dining Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014003', N'Pink Dining Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014001', N'Pink Dining Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014002', N'Pink Dining Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014005', N'Pink Dining Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51014007', N'Pink Dining Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002004', N'Grey Dining Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002006', N'Grey Dining Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002003', N'Grey Dining Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002001', N'Grey Dining Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002002', N'Grey Dining Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002005', N'Grey Dining Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51002007', N'Grey Dining Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015004', N'White Party Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015006', N'White Party Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015003', N'White Party Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015001', N'White Party Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015002', N'White Party Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015005', N'White Party Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51015007', N'White Party Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013004', N'Blue Party Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013006', N'Blue Party Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013003', N'Blue Party Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013001', N'Blue Party Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013002', N'Blue Party Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013005', N'Blue Party Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51013007', N'Blue Party Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008004', N'Purplish Party Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008006', N'Purplish Party Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008003', N'Purplish Party Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008001', N'Purplish Party Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008002', N'Purplish Party Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008005', N'Purplish Party Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51008007', N'Purplish Party Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001004', N'Golden Deacon Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001006', N'Golden Deacon Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001003', N'Golden Deacon Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001001', N'Golden Deacon Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001002', N'Golden Deacon Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001005', N'Golden Deacon Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51001007', N'Golden Deacon Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018004', N'White Magician Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018006', N'White Magician Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018003', N'White Magician Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018001', N'White Magician Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018002', N'White Magician Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018005', N'White Magician Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51018007', N'White Magician Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010004', N'Black Magician Coat [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010006', N'Black Magician Pants [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010003', N'Black Magician Shoes [Frantz]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010001', N'Black Magician Gloves [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010002', N'Black Magician Shirt [Frantz]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010005', N'Black Magician Tie [Frantz]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51010007', N'Black Magician Hair [Frantz]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017005', N'Pirate Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017007', N'Pirate Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017004', N'Pirate Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017001', N'Pirate Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017003', N'Pirate Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017006', N'Pirate Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51017002', N'Pirate Hat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024001', N'Mafia Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024002', N'Mafia Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024003', N'Mafia Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024004', N'Mafia Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024005', N'Mafia Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024006', N'Mafia Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51024007', N'Mafia Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003001', N'Black Fancy Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003002', N'Black Fancy Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003003', N'Black Fancy Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003004', N'Black Fancy Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003005', N'Black Fancy Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003006', N'Black Fancy Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51003007', N'Black Fancy Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020001', N'Blue Gold Jacket [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020002', N'Blue Gold Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020003', N'Blue Gold Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020004', N'Blue Gold Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020005', N'Blue Gold Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020006', N'Blue Gold Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51020007', N'Blue Gold Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022001', N'Violet Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022002', N'Violet Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022003', N'Violet Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022004', N'Violet Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022005', N'Violet Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022006', N'Violet Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51022007', N'Violet Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044001', N'Red Flaming Costume Jacket [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044002', N'Red Flaming Costume Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044003', N'Red Flaming Costume Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044004', N'Red Flaming Costume Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044005', N'Red Flaming Costume Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044006', N'Red Flaming Costume Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51044007', N'Red Flaming Costume Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045001', N'Blue Flaming Costume Jacket [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045002', N'Blue Flaming Costume Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045003', N'Blue Flaming Costume Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045004', N'Blue Flaming Costume Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045005', N'Blue Flaming Costume Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045006', N'Blue Flaming Costume Tie [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51045007', N'Blue Flaming Costume Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033001', N'Black Chain Coat [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033002', N'Black Chain Pants [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033003', N'Black Chain Shoes [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033004', N'Black Chain Gloves [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033005', N'Black Chain Shirt [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033006', N'Black Chain Necklace [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51033007', N'Black Chain Hair [Frantz]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015005', N'White Cowgirl Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015004', N'White Cowgirl Skirt [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015003', N'White Cowgirl Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015001', N'White Cowgirl Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015002', N'White Cowgirl Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015006', N'White Cowgirl Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015007', N'White Cowgirl Hat [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011005', N'Brown Cowgirl Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011004', N'Brown Cowgirl Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011003', N'Brown Cowgirl Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011001', N'Brown Cowgirl Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011002', N'Brown Cowgirl Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011006', N'Brown Cowgirl Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52011007', N'Brown Cowgirl Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004005', N'Navy Cowgirl Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004004', N'Navy Cowgirl Skirt [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004003', N'Navy Cowgirl Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004001', N'Navy Cowgirl Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004002', N'Navy Cowgirl Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004006', N'Navy Cowgirl Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52004007', N'Navy Cowgirl Hair [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005005', N'Dark Princess Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005004', N'Dark Princess Skirt [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005003', N'Dark Princess Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005001', N'Dark Princess Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005002', N'Dark Princess Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005006', N'Dark Princess Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52005007', N'Dark Princess Hair [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013005', N'Pink Princess Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013004', N'Pink Princess Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013003', N'Pink Princess Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013001', N'Pink Princess Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013002', N'Pink Princess Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013006', N'Pink Princess Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52013007', N'Pink Princess Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002005', N'Grey Princess Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002004', N'Grey Princess Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002003', N'Grey Princess Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002001', N'Grey Princess Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002002', N'Grey Princess Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002006', N'Grey Princess Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52002007', N'Grey Princess Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001005', N'Golden Fairy Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001002', N'Golden Fairy Pants [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001004', N'Golden Fairy Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001001', N'Golden Fairy Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001003', N'Golden Fairy Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001006', N'Golden Fairy Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52001007', N'Golden Fairy Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015012', N'White Fairy Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015009', N'White Fairy Pants [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015011', N'White Fairy Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015008', N'White Fairy Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015010', N'White Fairy Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015013', N'White Fairy Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52015014', N'White Fairy Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012012', N'Black Fairy Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012009', N'Black Fairy Pants [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012011', N'Black Fairy Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012008', N'Black Fairy Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012010', N'Black Fairy Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012013', N'Black Fairy Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012014', N'Black Fairy Hair [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009019', N'White Star Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009018', N'White Star Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009017', N'White Star Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009015', N'White Star Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009016', N'White Star Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009020', N'White Star Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009021', N'White Star Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009012', N'Blue Star Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009011', N'Blue Star Skirt [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009010', N'Blue Star Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009008', N'Blue Star Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009009', N'Blue Star Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009013', N'Blue Star Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009014', N'Blue Star Hair [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009005', N'Violet Star Jacket [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009004', N'Violet Star Skirt [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009003', N'Violet Star Shoes [Angela]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009001', N'Violet Star Gloves [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009002', N'Violet Star Blouse [Angela]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009006', N'Violet Star Tie [Angela]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52009007', N'Violet Star Hair [Angela]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010005', N'Pink Fur Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010004', N'Pink Fur Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010003', N'Pink Fur Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010001', N'Pink Fur Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010002', N'Pink Fur Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010006', N'Pink Fur Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52010007', N'Pink Fur Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020001', N'Magician Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020002', N'Magician Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020003', N'Magician Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020004', N'Magician Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020005', N'Magician Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020006', N'Magician Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52020007', N'Magician Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003001', N'Navy Striped Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003002', N'Navy Striped Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003003', N'Navy Striped Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003004', N'Navy Striped Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003005', N'Navy Striped Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003006', N'Navy Striped Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52003007', N'Navy Striped Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012001', N'Black Label Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012002', N'Black Label Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012003', N'Black Label Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012004', N'Black Label Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012005', N'Black Label Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012006', N'Black Label Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52012007', N'Black Label Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52016001', N'Golden Pattern Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017001', N'Golden Pattern Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017002', N'Golden Pattern Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017003', N'Golden Pattern Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017004', N'Golden Pattern Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017005', N'Golden Pattern Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52017006', N'Golden Pattern Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034001', N'Black Fur Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034002', N'Black Fur Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034003', N'Black Fur Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034004', N'Black Fur Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034005', N'Black Fur Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034006', N'Black Fur Tie [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52034007', N'Black Fur Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045001', N'Red Flaming Costume Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045002', N'Red Flaming Costume Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045003', N'Red Flaming Costume Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045004', N'Red Flaming Costume Hand Tattoo [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045005', N'Red Flaming Costume Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045006', N'Red Flaming Costume Necklace [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52045007', N'Red Flaming Costume Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046001', N'Blue Flaming Costume Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046002', N'Blue Flaming Costume Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046003', N'Blue Flaming Costume Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046004', N'Blue Flaming Costume Hand Tattoo [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046005', N'Blue Flaming Costume Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046006', N'Blue Flaming Costume Necklace [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52046007', N'Blue Flaming Costume Hair [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042001', N'Red Pirate Jacket [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042002', N'Red Pirate Skirt [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042003', N'Red Pirate Shoes [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042004', N'Red Pirate Gloves [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042005', N'Red Pirate Blouse [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042006', N'Red Pirate Necklace [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52042007', N'Red Pirate Hat [Angela]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005005', N'Pin-Striped Punk Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005006', N'Pin-Striped Punk Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005004', N'Pin-Striped Punk Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005001', N'Pin-Striped Punk Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005003', N'Pin-Striped Punk Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005002', N'Pin-Striped Punk Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53005007', N'Pin-Striped Punk Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016005', N'Pink Slim-Fit Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016006', N'Pink Slim-Fit Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016004', N'Pink Slim-Fit Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016001', N'Pink Slim-Fit Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016003', N'Pink Slim-Fit Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016002', N'Pink Slim-Fit Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53016007', N'Pink Slim-Fit Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002005', N'Grey Slim-Fit Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002006', N'Grey Slim-Fit Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002004', N'Grey Slim-Fit Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002001', N'Grey Slim-Fit Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002003', N'Grey Slim-Fit Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002002', N'Grey Slim-Fit Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53002007', N'Grey Slim-Fit Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020005', N'Pale Rider Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020006', N'Pale Rider Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020004', N'Pale Rider Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020001', N'Pale Rider Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020003', N'Pale Rider Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020002', N'Pale Rider Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53020007', N'Pale Rider Bandana [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010005', N'Brown Cowboy Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010006', N'Brown Cowboy Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010004', N'Brown Cowboy Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010003', N'Brown Cowboy Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010002', N'Brown Cowboy Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010001', N'Brown Cowboy Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53010007', N'Brown Cowboy Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004005', N'Navy Cowboy Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004006', N'Navy Cowboy Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004004', N'Navy Cowboy Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004003', N'Navy Cowboy Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004002', N'Navy Cowboy Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004001', N'Navy Cowboy Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53004007', N'Navy Cowboy Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017005', N'White Wanderer Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017006', N'White Wanderer Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017004', N'White Wanderer Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017001', N'White Wanderer Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017003', N'White Wanderer Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017002', N'White Wanderer Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53017007', N'White Wanderer Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015005', N'Blue Wanderer Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015006', N'Blue Wanderer Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015004', N'Blue Wanderer Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015007', N'Blue Wanderer Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015003', N'Blue Wanderer Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015002', N'Blue Wanderer Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53015001', N'Blue Wanderer Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009005', N'Purple Wanderer Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009006', N'Purple Wanderer Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009004', N'Purple Wanderer Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009007', N'Purple Wanderer Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009003', N'Purple Wanderer Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009002', N'Purple Wanderer Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53009001', N'Purple Wanderer Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011005', N'Stylish Cellmate Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011006', N'Stylish Cellmate Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011004', N'Stylish Cellmate Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011001', N'Stylish Cellmate Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011003', N'Stylish Cellmate Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011002', N'Stylish Cellmate Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53011007', N'Stylish Cellmate Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013005', N'White Papillon Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013006', N'White Papillon Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013004', N'White Papillon Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013003', N'White Papillon Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013002', N'White Papillon Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013001', N'White Papillon Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53013007', N'White Papillon Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012005', N'Black Papillon Coat [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012006', N'Black Papillon Pants [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012004', N'Black Papillon Shoes [Tude]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012003', N'Black Papillon Shirt [Tude]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012002', N'Black Papillon Necklace [Tude]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012001', N'Black Papillon Gloves [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53012007', N'Black Papillon Hair [Tude]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019001', N'Pirate Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019002', N'Pirate Hat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019003', N'Pirate Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019004', N'Pirate Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019005', N'Pirate Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019006', N'Pirate Tie [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53019007', N'Pirate Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025001', N'Boxing Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025002', N'Boxing Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025003', N'Boxing Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025004', N'Boxing Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025005', N'Boxing Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025006', N'Boxing Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53025007', N'Boxing Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003001', N'Black Leather Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003002', N'Black Leather Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003003', N'Black Leather Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003004', N'Black Leather Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003005', N'Black Leather Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003006', N'Black Leather Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53003007', N'Black Leather Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014001', N'Casual Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014002', N'Casual Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014003', N'Casual Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014004', N'Casual Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014005', N'Casual Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014006', N'Casual Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53014007', N'Casual Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022001', N'Brown Gold Jacket [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022002', N'Brown Gold Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022003', N'Brown Gold Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022004', N'Brown Gold Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022005', N'Brown Gold Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022006', N'Brown Gold Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53022007', N'Brown Gold Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034001', N'Black Casual Coat [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034002', N'Black Casual Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034003', N'Black Casual Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034004', N'Black Casual Wristband [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034005', N'Black Casual Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034006', N'Black Casual Necklace [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53034007', N'Black Casual Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045001', N'Red Flaming Costume Jacket [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045002', N'Red Flaming Costume Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045003', N'Red Flaming Costume Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045004', N'Red Flaming Costume Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045005', N'Red Flaming Costume Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045006', N'Red Flaming Costume Tie [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53045007', N'Red Flaming Costume Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046001', N'Blue Flaming Costume Jacket [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046002', N'Blue Flaming Costume Pants [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046003', N'Blue Flaming Costume Shoes [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046004', N'Blue Flaming Costume Gloves [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046005', N'Blue Flaming Costume Shirt [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046006', N'Blue Flaming Costume Tie [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53046007', N'Blue Flaming Costume Hair [Tude]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013004', N'White Cowgirl Coat [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013006', N'White Cowgirl Pants [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013003', N'White Cowgirl Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013001', N'White Cowgirl Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013002', N'White Cowgirl Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013005', N'White Cowgirl Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54013007', N'White Cowgirl Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006004', N'Brown Cowgirl Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006006', N'Brown Cowgirl Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006003', N'Brown Cowgirl Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006001', N'Brown Cowgirl Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006002', N'Brown Cowgirl Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006005', N'Brown Cowgirl Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54006007', N'Brown Cowgirl Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003004', N'Navy Cowgirl Jacket [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003006', N'Navy Cowgirl Pants [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003003', N'Navy Cowgirl Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003001', N'Navy Cowgirl Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003002', N'Navy Cowgirl Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003005', N'Navy Cowgirl Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54003007', N'Navy Cowgirl Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009005', N'Blue Feather Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009004', N'Blue Feather Skirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009003', N'Blue Feather Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009001', N'Blue Feather Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009002', N'Blue Feather Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009006', N'Blue Feather Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54009007', N'Blue Feather Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012005', N'White Feather Jacket [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012004', N'White Feather Skirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012003', N'White Feather Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012001', N'White Feather Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012002', N'White Feather Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012006', N'White Feather Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54012007', N'White Feather Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001005', N'Black Feather Jacket [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001004', N'Black Feather Skirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001003', N'Black Feather Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001001', N'Black Feather Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001002', N'Black Feather Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001006', N'Black Feather Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54001007', N'Black Feather Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002005', N'Grey Striped Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002004', N'Grey Striped Skirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002003', N'Grey Striped Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002001', N'Grey Striped Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002002', N'Grey Striped Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002006', N'Grey Striped Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54002007', N'Grey Striped Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004005', N'Brown Striped Coat [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004004', N'Brown Striped Skirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004003', N'Brown Striped Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004001', N'Brown Striped Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004002', N'Brown Striped Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004006', N'Brown Striped Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54004007', N'Brown Striped Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010005', N'Pink Striped Jacket [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010004', N'Pink Striped Skirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010003', N'Pink Striped Shoes [Natasha]', N'4', N'0', N'69', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010001', N'Pink Striped Gloves [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010002', N'Pink Striped Shirt [Natasha]', N'4', N'0', N'103', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010006', N'Pink Striped Tie [Natasha]', N'4', N'0', N'49', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54010007', N'Pink Striped Hair [Natasha]', N'4', N'0', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021001', N'Vice-Minister Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021002', N'Vice-Minister Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021003', N'Vice-Minister Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021004', N'Vice-Minister Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021005', N'Vice-Minister Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021006', N'Vice-Minister Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54021007', N'Vice-Minister Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017001', N'Nun Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017002', N'Nun Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017003', N'Nun Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017004', N'Nun Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017005', N'Nun Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017006', N'Nun Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54017007', N'Nun Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008001', N'Joker Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008002', N'Joker Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008003', N'Joker Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008004', N'Joker Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008005', N'Joker Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008006', N'Joker Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54008007', N'Joker Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005001', N'Violet Military Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005002', N'Violet Military Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005003', N'Violet Military Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005004', N'Violet Military Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005005', N'Violet Military Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005006', N'Violet Military Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54005007', N'Violet Military Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016001', N'White Nun Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016002', N'White Nun Skirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016003', N'White Nun Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016004', N'White Nun Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016005', N'White Nun Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016006', N'White Nun Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54016007', N'White Nun Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007004', N'Blue Military Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007006', N'Blue Military Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007003', N'Blue Military Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007001', N'Blue Military Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007002', N'Blue Military Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007005', N'Blue Military Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54007007', N'Blue Military Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039001', N'Red Flaming Costume Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039002', N'Red Flaming Costume Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039003', N'Red Flaming Costume Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039004', N'Red Flaming Costume Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039005', N'Red Flaming Costume Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039006', N'Red Flaming Costume Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54039007', N'Red Flaming Costume Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040001', N'Blue Flaming Costume Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040002', N'Blue Flaming Costume Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040003', N'Blue Flaming Costume Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040004', N'Blue Flaming Costume Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040005', N'Blue Flaming Costume Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040006', N'Blue Flaming Costume Tie [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54040007', N'Blue Flaming Costume Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020001', N'Brown Pirate Costume Jacket [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020002', N'Brown Pirate Costume Pants [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020003', N'Brown Pirate Costume Shoes [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020004', N'Brown Pirate Costume Gloves [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020005', N'Brown Pirate Costume Shirt [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020006', N'Brown Pirate Costume Necklace [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'54020007', N'Brown Pirate Costume Hair [Natasha]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104001', N'Red Flame Vest [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104002', N'Red Flame Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104003', N'Red Flame Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104004', N'Red Flame Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104005', N'Red Flame Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104006', N'Red Flame Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53104007', N'Red Flame Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105001', N'Black Flame Vest [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105002', N'Black Flame Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105003', N'Black Flame Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105004', N'Black Flame Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105005', N'Black Flame Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105006', N'Black Flame Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53105007', N'Black Flame Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106001', N'Yellow Flame Vest [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106002', N'Yellow Flame Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106003', N'Yellow Flame Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106004', N'Yellow Flame Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106005', N'Yellow Flame Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106006', N'Yellow Flame Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53106007', N'Yellow Flame Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101001', N'Plum Bird Vest [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101002', N'Plum Bird Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101003', N'Plum Bird Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101004', N'Plum Bird Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101005', N'Plum Bird Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101006', N'Plum Bird Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53101007', N'Plum Bird Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103001', N'Midnight Green Vest [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103002', N'Midnight Green Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103003', N'Blue Flaming Costume Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103004', N'Midnight Green Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103005', N'Midnight Green Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103006', N'Midnight Green Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53103007', N'Midnight Green Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129001', N'Red Flaming Costume Jacket [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129002', N'Red Flaming Costume Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129003', N'Red Flaming Costume Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129004', N'Red Flaming Costume Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129005', N'Red Flaming Costume Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129006', N'Red Flaming Costume Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53129007', N'Red Flaming Costume Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130001', N'Blue Flaming Costume Jacket [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130002', N'Blue Flaming Costume Shoes [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130003', N'Blue Flaming Costume Gloves [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130004', N'Blue Flaming Costume Dress [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130005', N'Blue Flaming Costume Necklace [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130006', N'Blue Flaming Costume Hair [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'53130007', N'Blue Flaming Costume Earrings [Meilin]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102001', N'White Queen Coat [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102002', N'White Queen Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102003', N'White Queen Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102004', N'White Queen Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102005', N'White Queen Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102006', N'White Queen Tie [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51102007', N'White Queen Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103001', N'Red Queen Coat [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103002', N'Red Queen Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103003', N'Red Queen Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103004', N'Red Queen Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103005', N'Red Queen Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103006', N'Red Queen Tie [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51103007', N'Red Queen Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104001', N'Brown Military Coat [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104002', N'Brown Military Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104003', N'Brown Military Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104004', N'Brown Military Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104005', N'Brown Military Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104006', N'Brown Military Tie [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51104007', N'Brown Military Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110001', N'Violet Amazon Jacket [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110002', N'Violet Amazon Skirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110003', N'Violet Amazon Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110004', N'Violet Amazon Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110005', N'Violet Amazon Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110006', N'Violet Amazon Necklace [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51110007', N'Violet Amazon Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106001', N'Green Military Coat [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106002', N'Green Military Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106003', N'Green Military Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106004', N'Green Military Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106005', N'Green Military Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106006', N'Green Military Tie [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51106007', N'Green Military Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122001', N'Black Opera Costume Jacket [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122002', N'Black Opera Costume Skirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122003', N'Black Opera Costume Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122004', N'Black Opera Costume Ring [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122005', N'Black Opera Costume Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122006', N'Black Opera Costume Necklace [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51122007', N'Black Opera Costume Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118001', N'Blue Pirate Jacket [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118002', N'Blue Pirate Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118003', N'Blue Pirate Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118004', N'Blue Pirate Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118005', N'Blue Pirate Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118006', N'Blue Pirate Tie [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51118007', N'Blue Pirate Hat [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125001', N'Red Flaming Costume Jacket [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125002', N'Red Flaming Costume Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125003', N'Red Flaming Costume Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125004', N'Red Flaming Costume Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125005', N'Red Flaming Costume Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125006', N'Red Flaming Costume Necklace [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51125007', N'Red Flaming Costume Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126001', N'Blue Flaming Costume Jacket [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126002', N'Blue Flaming Costume Pants [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126003', N'Blue Flaming Costume Shoes [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126004', N'Blue Flaming Costume Gloves [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126005', N'Blue Flaming Costume Shirt [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126006', N'Blue Flaming Costume Necklace [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51126007', N'Blue Flaming Costume Hair [Roselle]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107001', N'Red Troubadour Cloak [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107002', N'Red Troubadour Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107003', N'Red Troubadour Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107004', N'Red Troubadour Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107005', N'Red Troubadour Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107006', N'Red Troubadour Tie [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52107007', N'Red Troubadour Hat [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109001', N'Emerald Troubadour Cloak [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109002', N'Emerald Troubadour Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109003', N'Emerald Troubadour Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109004', N'Emerald Troubadour Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109005', N'Emerald Troubadour Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109006', N'Emerald Troubadour Tie [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52109007', N'Emerald Troubadour Hat [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102001', N'Blue Winter Hood [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102002', N'Blue Winter Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102003', N'Blue Winter Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102004', N'Blue Winter Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102005', N'Blue Winter Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102006', N'Blue Winter Scarf [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52102007', N'Blue Winter Hair [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125001', N'Red Flaming Costume Jacket [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125002', N'Red Flaming Costume Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125003', N'Red Flaming Costume Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125004', N'Red Flaming Costume Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125005', N'Red Flaming Costume Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125006', N'Red Flaming Costume Necklace [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52125007', N'Red Flaming Costume Hair [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126001', N'Blue Flaming Costume Jacket [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126002', N'Blue Flaming Costume Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126003', N'Blue Flaming Costume Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126004', N'Blue Flaming Costume Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126005', N'Blue Flaming Costume Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126006', N'Blue Flaming Costume Necklace [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52126007', N'Blue Flaming Costume Hair [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119001', N'Brown Pirate Costume Jacket [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119002', N'Brown Pirate Costume Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119003', N'Brown Pirate Costume Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119004', N'Brown Pirate Costume Gloves [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119005', N'Brown Pirate Costume Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119006', N'Brown Pirate Costume Tie [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52119007', N'Brown Pirate Costume Hair [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121001', N'Brown Duke Costume Cloak [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121002', N'Brown Duke Costume Pants [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121003', N'Brown Duke Costume Shoes [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121004', N'Brown Duke Costume Ring [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121005', N'Brown Duke Costume Shirt [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121006', N'Brown Duke Costume Ribbon [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'52121007', N'Brown Duke Costume Hat [Edgar]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205001', N'Purple Lady Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205002', N'Purple Lady Skirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205003', N'Purple Lady Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205004', N'Purple Lady Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205005', N'Purple Lady Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205006', N'Purple Lady Necklace [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51205007', N'Purple Lady Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206001', N'Emerald Lady Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206002', N'Emerald Lady Skirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206003', N'Emerald Lady Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206004', N'Emerald Lady Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206005', N'Emerald Lady Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206006', N'Emerald Lady Necklace [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51206007', N'Emerald Lady Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207001', N'Yellow Lady Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207002', N'Yellow Lady Skirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207003', N'Yellow Lady Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207004', N'Yellow Lady Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207005', N'Yellow Lady Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207006', N'Yellow Lady Necklace [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51207007', N'Yellow Lady Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208001', N'Purple Black Magic Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208002', N'Purple Black Magic Skirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208003', N'Purple Black Magic Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208004', N'Purple Black Magic Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208005', N'Purple Black Magic Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208006', N'Purple Black Magic Ribbon [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51208007', N'Purple Black Magic Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224001', N'Red Flaming Costume Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224002', N'Red Flaming Costume Pants [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224003', N'Red Flaming Costume Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224004', N'Red Flaming Costume Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224005', N'Red Flaming Costume Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224006', N'Red Flaming Costume Tie [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51224007', N'Red Flaming Costume Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225001', N'Blue Flaming Costume Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225002', N'Blue Flaming Costume Pants [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225003', N'Blue Flaming Costume Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225004', N'Blue Flaming Costume Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225005', N'Blue Flaming Costume Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225006', N'Blue Flaming Costume Tie [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51225007', N'Blue Flaming Costume Hair [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218001', N'Black Pirate Costume Jacket [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218002', N'Black Pirate Costume Pants [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218003', N'Black Pirate Costume Shoes [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218004', N'Black Pirate Costume Gloves [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218005', N'Black Pirate Costume Shirt [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218006', N'Black Pirate Costume Tie [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'51218007', N'Black Pirate Costume Hat [Leila]', N'4', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000001', N'Unique Ether of Change (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000001', N'Unique Ether of Change (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000002', N'Rare Ether of Change (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000002', N'Rare Ether of Change (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000043', N'Powerful HP Recovery Potion (50)', N'0', N'50', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000043', N'Powerful HP Recovery Potion (100)', N'0', N'100', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000044', N'Powerful MP Recovery Potion (50)', N'0', N'50', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000044', N'Powerful MP Recovery Potion (100)', N'0', N'100', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000076', N'World Megaphone (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000076', N'World Megaphone (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000077', N'Reset Skill Points', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000078', N'Reset PVP Score (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000079', N'Save Stamina (100 Points)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000088', N'Save Stamina (300 Points)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000081', N'Expand Personal Warehouse (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000082', N'Resurrection Scroll (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000082', N'Resurrection Scroll (50)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000082', N'Resurrection Scroll (100)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000101', N'Five Color Gem Box (10)', N'0', N'10', N'140', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000101', N'Five Color Gem Box (30)', N'0', N'30', N'375', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000127', N'Green Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000127', N'Green Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000128', N'Yellow Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000128', N'Yellow Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000129', N'Blue Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000129', N'Blue Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000130', N'Red Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000130', N'Red Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000104', N'Full Equipment Repair Kit (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000104', N'Full Equipment Repair Kit (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000104', N'Full Equipment Repair Kit (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000105', N'Equipment Repair Kit (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000105', N'Equipment Repair Kit (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000105', N'Equipment Repair Kit (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000080', N'Portable Warehouse (10)', N'0', N'10', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000080', N'Portable Warehouse (30)', N'0', N'30', N'132', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000080', N'Portable Warehouse (50)', N'0', N'50', N'175', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000208', N'Gem Socket Punch (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000208', N'Gem Socket Punch (20)', N'0', N'20', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000208', N'Gem Socket Punch (50)', N'0', N'50', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000206', N'Poison''s Secret Box (1)', N'0', N'1', N'45', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000206', N'Poison''s Secret Box (12)', N'0', N'12', N'450', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000224', N'Renaming Contract (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000219', N'Alchemist''s Jar (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000219', N'Alchemist''s Jar (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000220', N'Magic Chest of Change (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000220', N'Magic Chest of Change (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000485', N'Create Avatar: Meilin Chen', N'0', N'1', N'995', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000484', N'Avatar Special Package [Meilin]', N'0', N'1', N'1295', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive (50)', N'0', N'50', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000487', N'Create Avatar: Roselle Vergerius', N'0', N'1', N'995', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000486', N'Avatar Special Package [Roselle]', N'0', N'1', N'1295', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000489', N'Create Avatar: Edgar Grosvenor', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000488', N'Avatar Special Package [Edgar]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000000', N'Epic Ether of Change (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000000', N'Epic Ether of Change (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000332', N'Create Avatar: Leila', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000391', N'Premium Avatar Package', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000278', N'Pet: Momo', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000275', N'Pet Rename', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000204', N'Powerful AP Recovery Potion (5)', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000225', N'Title: Golden Hearts', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59001', N'Clovis of Illusion (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59002', N'Clovis of Inferno (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59003', N'Clovis of Punishment (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59004', N'Clovis of Taboo (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59005', N'Clovis of Fissure (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59020', N'Clovis of the Altar (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59021', N'Clovis of the Valley (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59022', N'Clovis of the Castle of Mist', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59023', N'Clovis of the Hellfire', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59024', N'Clovis of the Pasture', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000310', N'Gem Socket Punch (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000311', N'Magic Chest of Change (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000031', N'Upper Garment Costume Option : Physical Defense+3%', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000032', N'Upper Garment Costume Option : MaxHP+100', N'2', N'2', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000033', N'Upper Garment Costume Option : Critical Resist+3%', N'2', N'3', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000034', N'Lower Garment Costume Option : Magic Defense+3%', N'2', N'4', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000035', N'Lower Garment Costume Option : MaxMP+100', N'2', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000036', N'Lower Garment Costume Option : Critical Resist+3%', N'2', N'6', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000037', N'Shoes Costume Option : Physical Defense+200', N'2', N'7', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000038', N'Shoes Costume Option : Magic Defense+200', N'2', N'8', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000039', N'Shoes Costume Option : Critical Power+3%', N'2', N'9', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000040', N'Gloves Costume Option : Physical Attack+20', N'2', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000041', N'Gloves Costume Option : Magic Attack+20', N'2', N'11', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000042', N'Gloves Costume Option : Critical Rate+3%', N'2', N'12', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000045', N'Shirt Costume Option : Max HP+100', N'2', N'13', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000046', N'Shirt Costume Option : Max MP+100', N'2', N'14', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000047', N'Shirt Costume Option : Physical Attack+20', N'2', N'15', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000048', N'Shirt Costume Option : Magic Attack+20', N'2', N'16', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000049', N'Tie Costume Option : Critical Rate+3%', N'2', N'17', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000050', N'Tie Costume Option : Critical Power+3%', N'2', N'18', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000051', N'Tie Costume Option : Critical Resist+3%', N'2', N'19', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000052', N'Hair Costume Option : Fire Attribute Resist+10', N'2', N'20', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000053', N'Hair Costume Option : Water Attribute Resist+10', N'2', N'21', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000054', N'Hair Costume Option : Light Attribute Resist+10', N'2', N'22', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000055', N'Hair Costume Option : DarknessAttribute Resist+10', N'2', N'23', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000056', N'Hair Costume Option : Earth Attribute Resist+10', N'2', N'24', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000057', N'Hair Costume Option : Wind Attribute Resist+10', N'2', N'25', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000058', N'Hair Costume Option : Poison Attribute Resist+10', N'2', N'26', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000059', N'Hair Costume Option : Lightning Attribute Resist+10', N'2', N'27', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000060', N'Face Costume Option : Fire Attribute Attack+10', N'2', N'28', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000061', N'Face Costume Option : Water Attribute Attack+10', N'2', N'29', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000062', N'Face Costume Option : Light Attribute Attack+10', N'2', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000063', N'Face Costume Option : DarknessAttribute Attack+10', N'2', N'31', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000064', N'Face Costume Option : Earth Attribute Attack+10', N'2', N'32', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000065', N'Face Costume Option : Wind Attribute Attack+10', N'2', N'33', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000066', N'Face Costume Option : Poison Attribute Attack+10', N'2', N'34', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000067', N'Face Costume Option : Lightning Attribute Attack+10', N'2', N'35', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000068', N'Accessory 1 Costume Option : MaxHP+2%', N'2', N'36', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000069', N'Accessory 1 Costume Option : MaxMP+2%', N'2', N'37', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000070', N'Accessory 1 Costume Option : Physical Attack+2%', N'2', N'38', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000071', N'Accessory 1 Costume Option : Magic Attack+2%', N'2', N'39', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000072', N'Accessory 2 Costume Option : Physical Defense+2%', N'2', N'40', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000073', N'Accessory 2 Costume Option : Magic Defense+2%', N'2', N'41', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000074', N'Accessory 2 Costume Option : Physical Damage Reduce+2%', N'2', N'42', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000075', N'Accessory 2 Costume Option : Magic Damage Reduce+2%', N'2', N'43', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000068', N'Hair Costume Option : Critical Resist+3%', N'2', N'36', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000069', N'Hair Costume Option : Max HP+100', N'2', N'37', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000070', N'Hair Costume Option : Max MP+100', N'2', N'38', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000095', N'Pro Booster Pack', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000205', N'Elite Booster Pack', N'1', N'43200', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000085', N'Level Up Package (90 Days)', N'1', N'129600', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000096', N'Gold Package (7 Days)', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000097', N'Master Package (7 Days)', N'1', N'10080', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000330', N'Extreme Booster Pack', N'1', N'43200', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000098', N'Express Booster Pack', N'1', N'4320', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000264', N'Halloween Festival Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000265', N'Halloween Festival Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000266', N'Halloween Festival Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000267', N'Halloween Festival Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000249', N'Thanksgiving Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000250', N'Thanksgiving Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000251', N'Thanksgiving Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000252', N'Thanksgiving Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000256', N'Sky Blue Bird Costume Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000299', N'Holiday Package [Frantz]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000300', N'Holiday Package [Angela]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000301', N'Holiday Package [Tude]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000302', N'Holiday Package [Natasha]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000303', N'Holiday Package [Roselle]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000304', N'Holiday Package [Edgar]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000305', N'Holiday Package [Meilin]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000312', N'New Traditional Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000313', N'New Traditional Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000314', N'New Traditional Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000315', N'New Traditional Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000316', N'New Traditional Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000317', N'New Traditional Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000318', N'New Traditional Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000319', N'New Traditional Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000268', N'Halloween Festival Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000273', N'Black Queen Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000298', N'Purple Winter Costume Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000327', N'Black Floral Dress Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000368', N'Red Gold Box [Frantz]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000371', N'Crimson Conjurer Box [Angela]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000372', N'Little Blue-Blood Box [Edgar]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000373', N'Silver Sage Box [Tude]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000374', N'Blue Star Box [Meilin]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000375', N'Scarlet Chic Box [Natasha]', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000410', N'Summer Scuba Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000411', N'Summer Scuba Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000412', N'Summer Scuba Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000413', N'Summer Scuba Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000414', N'Summer Scuba Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000415', N'Summer Scuba Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000416', N'Summer Scuba Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000417', N'Summer Scuba Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000492', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000493', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000494', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000495', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000496', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000497', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000498', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000499', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000511', N'Inuit Package [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000512', N'Inuit Package [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000513', N'Inuit Package [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000514', N'Inuit Package [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000515', N'Inuit Package [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000516', N'Inuit Package [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000517', N'Inuit Package [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000518', N'Inuit Package [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000101', N'Five Color Gem Box (10)', N'0', N'10', N'140', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000101', N'Five Color Gem Box (30)', N'0', N'30', N'375', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000127', N'Green Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000127', N'Green Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000128', N'Yellow Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000128', N'Yellow Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000129', N'Blue Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000129', N'Blue Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000130', N'Red Gem Box (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000130', N'Red Gem Box (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive (30)', N'0', N'30', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000206', N'Poison''s Secret Box (1)', N'0', N'1', N'45', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000206', N'Poison''s Secret Box (12)', N'0', N'12', N'450', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000219', N'Alchemist''s Jar (1)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000219', N'Alchemist''s Jar (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'50993', N'Clovis of Illusion (10)', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'81000006', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'81000007', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'81000008', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000541', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000542', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000543', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000544', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000545', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000546', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000547', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000548', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000549', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000463', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000464', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000465', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000466', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000467', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000468', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000469', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000470', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000520', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000472', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000471', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000446', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000447', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000448', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000449', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000450', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000451', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000452', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000453', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000436', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000437', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000438', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000439', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000440', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000441', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000442', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000443', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59001', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59005', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59020', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000376', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000377', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000378', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000379', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000380', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000381', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000382', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000383', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000368', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000369', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000370', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000371', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000372', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000373', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000374', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000375', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000335', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000336', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000337', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000338', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000339', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000340', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000341', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000342', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000343', N'Poison''s Halloween Pack [Frantz]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000344', N'Poison''s Halloween Pack [Roselle]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000345', N'Poison''s Halloween Pack [Leila]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000346', N'Poison''s Halloween Pack [Angela]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000347', N'Poison''s Halloween Pack [Edgar]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000348', N'Poison''s Halloween Pack [Tude]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000349', N'Poison''s Halloween Pack [Meilin]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000350', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59021', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'59022', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'31030', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000278', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000426', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000500', N'Poison''s Halloween Pack [Natasha]', N'3', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000104', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000080', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000082', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'70002039', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000279', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000280', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000281', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_CashProduct] ([id], [name], [type], [typevalue], [price], [index]) VALUES (N'80000538', N'Clovis of Inferno (10)', N'0', N'1', N'0', N'0')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_CharacterClass
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_CharacterClass]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_CharacterClass]
+GO
+
+CREATE TABLE [dbo].[Base_CharacterClass] (
+ [language] tinyint DEFAULT 1 NOT NULL,
+ [class_code] int NOT NULL,
+ [class_name] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [job_0] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [job_1] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [job_2] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL,
+ [job_3] nvarchar(50) COLLATE Korean_Wansung_CI_AS NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_CharacterClass] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_CharacterClass
+-- ----------------------------
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'1', N'Frantz', N'Basic', N'Sword', N'Axe', N'Twin Swords')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'2', N'Angela', N'Basic', N'Magic Sword', N'Scytle', N'Glaive')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'3', N'Tude', N'Basic', N'Gauntlet', N'Claw', N'Demon Hands')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'4', N'Natasha', N'Basic', N'Revolver', N'Musket', N'Weapon Bag')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'101', N'Roselle', N'Basic', N'Sword', N'Axe', N'Twin Swords')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'102', N'Leila', N'Basic', N'Sword', N'Axe', N'Twin Swords')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'201', N'Edgar', N'Basic', N'Magic Sword', N'Scytle', N'Glaive')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'301', N'Meilin', N'Basic', N'Gauntlet', N'Claw', N'Demon Hands')
+GO
+
+INSERT INTO [dbo].[Base_CharacterClass] ([language], [class_code], [class_name], [job_0], [job_1], [job_2], [job_3]) VALUES (N'2', N'401', N'Ian', N'Basic', N'Revolver', N'Musket', N'Weapon Bag')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_CharacterJob
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_CharacterJob]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_CharacterJob]
+GO
+
+CREATE TABLE [dbo].[Base_CharacterJob] (
+ [job_code] tinyint NOT NULL,
+ [job_name] nvarchar(50) COLLATE Korean_Wansung_CI_AS NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_CharacterJob] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_CharacterJob
+-- ----------------------------
+INSERT INTO [dbo].[Base_CharacterJob] ([job_code], [job_name]) VALUES (N'0', N'No Focus')
+GO
+
+INSERT INTO [dbo].[Base_CharacterJob] ([job_code], [job_name]) VALUES (N'1', N'Focus 1')
+GO
+
+INSERT INTO [dbo].[Base_CharacterJob] ([job_code], [job_name]) VALUES (N'2', N'Focus 2')
+GO
+
+INSERT INTO [dbo].[Base_CharacterJob] ([job_code], [job_name]) VALUES (N'3', N'Focus 3')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_DungeonTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_DungeonTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_DungeonTable]
+GO
+
+CREATE TABLE [dbo].[Base_DungeonTable] (
+ [MapID] int NOT NULL,
+ [Name] nvarchar(30) COLLATE Korean_Wansung_CI_AS NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_DungeonTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_DungeonTable
+-- ----------------------------
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010101', N'Canals B3')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010102', N'Canals B2')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010103', N'Upper Plant')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010104', N'Lower Plant')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010201', N'Wine Cellar 1F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010202', N'Cellar Sewers')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010203', N'Wine Cellar 2F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010204', N'Cafeteria 1F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010205', N'Library 1F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010206', N'Cafeteria 2F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010207', N'Library 2F')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010208', N'Labyrinth')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010301', N'Atrium')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010302', N'Abandoned Wing')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010303', N'Collapsed Halls')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010304', N'Public Baths')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010305', N'Steamworks')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010306', N'Guest Villa')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010307', N'Conservatory')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2010308', N'Canal B4')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020101', N'Vivarium')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020102', N'Arboretum')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020103', N'Quarantined Labs')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020104', N'Debtor''s Prison')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020105', N'The Hole')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020106', N'Top Secret Facility')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020107', N'Vivarium Event')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020201', N'Opera House')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020202', N'Catwalks')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020203', N'Gallery')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020204', N'Ramparts')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020205', N'Aquarium')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020206', N'Aquarium Sector 2')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020207', N'Veranda')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020301', N'Altar Entrance')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020302', N'Altar')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020303', N'Collapsed Altar')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020304', N'Catacomb')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020305', N'King''s Grave')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2020306', N'Collapsed Guest Villa')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2050001', N'Lizard''s Cove')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2050002', N'Meadow')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2050003', N'Garden')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'2050004', N'Fairy''s Forest')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000015', N'Training Hall 1')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000016', N'Training Hall 2')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000017', N'Mausoleum Arena')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000018', N'Tower of Fate')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000019', N'Room of Chaos')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000037', N'Forgotten City')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000038', N'Training Hall 3')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000039', N'Maze Garden')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000040', N'Shrine of Eternity')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000041', N'Hussy''s Nightmare')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000042', N'Coast Defense')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000043', N'Toy Tower')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000044', N'7 Magic Stones')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'5000045', N'Forked Road')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100001', N'Altar')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100002', N'Dead Man''s Valley')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100003', N'Castle of Black Mist')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100004', N'Raid 4')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100005', N'Restricted Incinerator')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'8100006', N'Deserted Farm')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'9000010', N'Movement Control')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'9000011', N'Tutorial_Basic Control')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'9000012', N'Tutorial_Just Guard')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'9000013', N'Tutorial_Cancel')
+GO
+
+INSERT INTO [dbo].[Base_DungeonTable] ([MapID], [Name]) VALUES (N'9000014', N'Tutorial_Combo')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_ExpTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_ExpTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_ExpTable]
+GO
+
+CREATE TABLE [dbo].[Base_ExpTable] (
+ [Level] int DEFAULT 0 NOT NULL,
+ [Exp] bigint DEFAULT 0 NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_ExpTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_ExpTable
+-- ----------------------------
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'1', N'1880')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'2', N'6800')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'3', N'13040')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'4', N'21600')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'5', N'32890')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'6', N'47350')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'7', N'67590')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'8', N'93720')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'9', N'126650')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'10', N'170490')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'11', N'227070')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'12', N'298340')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'13', N'386340')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'14', N'493240')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'15', N'621310')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'16', N'772920')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'17', N'950560')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'18', N'1156810')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'19', N'1394380')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'20', N'1667740')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'21', N'1995340')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'22', N'2383700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'23', N'2839700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'24', N'3350420')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'25', N'3918900')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'26', N'4548180')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'27', N'5241300')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'28', N'6001300')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'29', N'6831220')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'30', N'7767540')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'31', N'8816340')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'32', N'9983700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'33', N'11275700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'34', N'12698420')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'35', N'14257940')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'36', N'15960340')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'37', N'17811700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'38', N'19818100')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'39', N'21985620')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'40', N'24466260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'41', N'27126260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'42', N'29971700')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'43', N'33008660')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'44', N'36243220')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'45', N'39681460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'46', N'43329460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'47', N'47099060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'48', N'50990260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'49', N'55003060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'50', N'59137460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'51', N'63393460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'52', N'67771060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'53', N'72270260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'54', N'76891060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'55', N'81633460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'56', N'86497460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'57', N'91483060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'58', N'96590260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'59', N'101819060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'60', N'107169460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'61', N'112641460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'62', N'118235060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'63', N'123950260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'64', N'129787060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'65', N'135745460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'66', N'141825460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'67', N'148027060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'68', N'154350260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'69', N'160795060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'70', N'167361460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'71', N'174049460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'72', N'180859060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'73', N'187790260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'74', N'194843060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'75', N'202017460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'76', N'209313460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'77', N'216731060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'78', N'224270260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'79', N'231931060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'80', N'239713460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'81', N'247617460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'82', N'255643060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'83', N'263790260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'84', N'272059060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'85', N'280449460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'86', N'288961460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'87', N'297595060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'88', N'306350260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'89', N'315227060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'90', N'324225460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'91', N'333345460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'92', N'342587060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'93', N'351950260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'94', N'361435060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'95', N'371041460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'96', N'380769460')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'97', N'390619060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'98', N'400590260')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'99', N'410683060')
+GO
+
+INSERT INTO [dbo].[Base_ExpTable] ([Level], [Exp]) VALUES (N'100', N'420897460')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_ItemOptionTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_ItemOptionTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_ItemOptionTable]
+GO
+
+CREATE TABLE [dbo].[Base_ItemOptionTable] (
+ [id] int NOT NULL,
+ [name] nvarchar(150) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [min_value] int DEFAULT 1 NULL,
+ [max_value] int DEFAULT 10 NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_ItemOptionTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_ItemOptionTable
+-- ----------------------------
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'0', N'', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1001', N'Max HP +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1002', N'Max MP +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1003', N'Physical Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1004', N'Magic Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1005', N'Physical Defense +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1006', N'Magic Defense +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1007', N'Physical Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1008', N'Magic Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1009', N'Movement Speed +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1010', N'Critical Rate +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1011', N'Luck +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1012', N'Physical Weapon Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1013', N'Magic Weapon Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1014', N'Reduce MP Use +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1015', N'Critical Power +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1016', N'Reduce Final Physical Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1017', N'Reduce Final Magic Damage +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1018', N'Critical Resistance +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1019', N'Increase your maximum HP by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1020', N'Increase your maximum MP by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1021', N'Increase your Physical Damage by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1022', N'Increase your Physical Defense by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1023', N'Increase your Magic Damage by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1024', N'Increase your Magic Defense by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1025', N'Increase your Critical Rate by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1026', N'Increase your Critical Power by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1027', N'Increase your Critical Resistance by (Skill Level * +#@value01@#%)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1028', N'Fire Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1029', N'Water Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1030', N'Light Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1031', N'Darkness Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1032', N'Earth Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1033', N'Wind Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1034', N'Poison Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1035', N'Lightning Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1036', N'All Elemental Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1037', N'Attack Speed +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1038', N'Critical Rate +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1201', N'Party Member Max HP +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1202', N'Party Member Max MP +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1203', N'Party Member Physical Attack +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1204', N'Party Member Magic Attack +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1205', N'Party Member Physical Defense +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1206', N'Party Member Magic Defense +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1207', N'Party Member Physical Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1208', N'Party Member Magic Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1209', N'Party Member Movement Speed +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1210', N'Party Member Critical Rate +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1211', N'Party Member Luck +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1212', N'Party Member Weapon Physical Attack +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1213', N'Party Member Weapon Magic Attack +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1214', N'Party Member MP Consumption Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1215', N'Party Member Critical Power +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1216', N'Party Member Final Physical Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1217', N'Party Member Final Magic Damage Reduction +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1218', N'Party Member Critical Resistance +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1219', N'Increases Max HP by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1220', N'Increases Max MP by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1221', N'Increases Physical Attack by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1222', N'Increases Physical Defence by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1223', N'Increases Magic Attack by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1224', N'Increases Magic Defence by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1225', N'Increases Critical Chance by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1226', N'Increases Critical Power by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1227', N'Increases Critical Resistance by * +#@value01@#% of party member enhancement level', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1228', N'Party Member Fire Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1229', N'Party Member Water Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1230', N'Party Member Light Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1231', N'Party Member Darkness Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1232', N'Party Member Earth Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1233', N'Party Member Wind Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1234', N'Party Member Poison Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1235', N'Party Member Lightning Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1236', N'Party Member All Elemental Damage +#@value01@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1237', N'Party Member Attack Speed +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1238', N'Party Member Critical Rate +#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1501', N'Max HP -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1502', N'Max MP -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1503', N'Physical Damage -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1504', N'Magic Damage -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1505', N'Physical Defense -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1506', N'Magic Defense -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1507', N'Movement Speed -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1508', N'Critical Rate -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1509', N'Luck -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1510', N'Physical Weapon Damage -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1511', N'Magic Weapon Damage -#@value01@#%', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1601', N'Increases other gem effects by #@value01@# %.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1602', N'Increased durability by + #@value01@#.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1603', N'Gold Obtained +#@value01@#%.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1701', N'Convert all damage to Fire Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1702', N'Convert all damage to Water Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1703', N'Convert all damage to Wind Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1704', N'Convert all damage to Lightning Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1705', N'Convert all damage to Earth Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1706', N'Convert all damage to Light Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1707', N'Convert all damage to Darkness Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1708', N'Convert all damage to Poison Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1709', N'Convert all damage to Fire Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1710', N'Convert all damage to Water Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1711', N'Convert all damage to Wind Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1712', N'Convert all damage to Lightning Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1713', N'Convert all damage to Earth Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1714', N'Convert all damage to Light Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1715', N'Convert all damage to Darkness Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1716', N'Convert all damage to Poison Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1717', N'Convert all damage to Fire Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1718', N'Convert all damage to Water Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1719', N'Convert all damage to Wind Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1720', N'Convert all damage to Lightning Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1721', N'Convert all damage to Earth Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1722', N'Convert all damage to Light Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1723', N'Convert all damage to Darkness Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1724', N'Convert all damage to Poison Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1725', N'Convert all damage to Fire Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1726', N'Convert all damage to Water Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1727', N'Convert all damage to Wind Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1728', N'Convert all damage to Lightning Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1729', N'Convert all damage to Earth Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1730', N'Convert all damage to Light Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1731', N'Convert all damage to Darkness Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'1732', N'Convert all damage to Poison Damage.', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2001', N'Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2002', N'Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2003', N'Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2004', N'Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2005', N'Physical Weapon Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2006', N'Magic Weapon Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2007', N'Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2008', N'Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2009', N'Fire Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2010', N'Water Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2011', N'Light Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2012', N'Darkness Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2013', N'Fire Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2014', N'Water Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2015', N'Light Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2016', N'Darkness Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2017', N'Recover +#@value01@# HP every #@value02@# minute(s).', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2018', N'Recover +#@value01@# MP every #@value02@# minute(s).', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2019', N'All Elements Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2020', N'All Elemental Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2021', N'Maximum Inventory Weight +#@value01@#Kg', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2022', N'Reduce MP Use +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2023', N'Ignore Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2024', N'Ignore Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2025', N'Additional Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2026', N'Additional Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2027', N'Physical Damage Absorption +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2028', N'Magic Damage Absorption +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2029', N'Earth Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2030', N'Wind Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2031', N'Earth Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2032', N'Wind Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2033', N'Poison Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2034', N'Lightning Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2035', N'Poison Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2036', N'Lightning Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2037', N'Max HP +#@value02@# when item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2038', N'Max MP +#@value02@# when item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2039', N'Your Physical Damage will be increased by +#@value02@# when the item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2040', N'Your Physical Defense will be increased by +#@value02@# when the item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2041', N'Your Magic Damage will be increased by +#@value02@# when the item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2042', N'Your Magic Defense will be increased by +#@value02@# when the item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2043', N'Your Critical Rate will be increased by +#@value02@# when your item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2044', N'Max Critical Power +#@value02@# when item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2045', N'Critical Resistance +#@value02@# when item''s level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2050', N'Length #@value01@#cm', N'1', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2201', N'Party Member Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2202', N'Party Member Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2203', N'Party Member Physical Attack +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2204', N'Party Member Magic Attack +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2205', N'Party Member Weapon Physical Attack +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2206', N'Party Member Weapon Magic Attack +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2207', N'Party Member Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2208', N'Party Member Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2209', N'Party Member Fire Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2210', N'Party Member Water Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2211', N'Party Member Darkness Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2212', N'Party Member Light Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2213', N'Party Member Fire Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2214', N'Party Member Water Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2215', N'Party Member Light Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2216', N'Party Member Darkness Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2217', N'Party Member recover #@value02@# HP per minute +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2218', N'Party Member recover #@value02@# MP per minute +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2219', N'Party Member All Elements Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2220', N'Party Member All Elemental Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2221', N'Party Member Maximum Inventory Weight +#@value01@#Kg', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2222', N'Party Member MP Consumption Reduction +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2223', N'Party Member Ignore Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2224', N'Party Member Ignore Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2225', N'Party Member Additional Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2226', N'Party Member Additional Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2227', N'Party Member Physical Damage Absorption +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2228', N'Party Member Magic Damage Absorption +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2229', N'Party Member Earth Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2230', N'Party Member Wind Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2231', N'Party Member Earth Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2232', N'Party Member Wind Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2233', N'Party Member Poison Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2234', N'Party Member Lightning Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2235', N'Party Member Poison Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2236', N'Party Member Lightning Resistance +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2237', N'When Party Member item enhancement level is #@value01@# or higher, Max HP increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2238', N'When Party Member item enhancement level is #@value01@# or higher, Max MP increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2239', N'When Party Member item enhancement level is #@value01@# or higher, Physical Attack increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2240', N'When Party Member item enhancement level is #@value01@# or higher, Physical Defense increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2241', N'When Party Member item enhancement level is #@value01@# or higher, Magic Attack increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2242', N'When Party Member item enhancement level is #@value01@# or higher, Magic Defence increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2243', N'When Party Member item enhancement level is #@value01@# or higher, Critical Rate increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2244', N'When Party Member item enhancement level is #@value01@# or higher, Critical Power increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2245', N'When Party Member item enhancement level is #@value01@# or higher, Critical Resistance increased by +#@value02@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2501', N'Max HP -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2502', N'Max MP -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2503', N'Physical Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2504', N'Magic Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2505', N'Physical Weapon Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2506', N'Magic Weapon Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2507', N'Physical Defense -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2508', N'Magic Defense -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2509', N'Fire Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2510', N'Water Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2511', N'Light Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2512', N'Darkness Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2513', N'Fire Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2514', N'Water Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2515', N'Light Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2516', N'Darkness Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2517', N'All Elements Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2518', N'All Elemental Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2519', N'Maximum Inventory Weight -#@value01@#Kg', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2520', N'Earth Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2521', N'Wind Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2522', N'Earth Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2523', N'Wind Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2524', N'Poison Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2525', N'Lightning Damage -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2526', N'Poison Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'2527', N'Lightning Resistance -#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3001', N'#@value02@#% chance of inflicting +#@value01@#
additional damage.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3002', N'#@value02@#% chance of inflicting +#@value01@#
additional magic damage.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3003', N'#@value02@#% chance of ignoring +#@value01@#
Physical Defense.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3004', N'#@value02@#% chance of ignoring +#@value01@# Magic
Defense.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3005', N'#@value02@#% chance to restore +#@value01@# HP.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3006', N'#@value02@#% chance to restore +#@value01@# MP.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3007', N'#@value03@#% chance of increasing
Physical Damage by +#@value01@# for
#@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3008', N'#@value03@#% chance of increasing
Magic Damage by +#@value01@# for
#@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3009', N'#@value03@#% chance of increasing all party
members'' Attack Speed by +#@value01@# for
#@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3010', N'#@value02@#% chance of reducing HP of #@value03@#
for #@value01@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3011', N'#@value02@#% chance of recovering all party
members'' HP by +#@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3012', N'#@value02@#% chance to cast Lv. #@value01@# Stone.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3013', N'#@value02@#% chance to cast Lv. #@value01@# Freeze.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3014', N'#@value02@#% chance to cast Lv. #@value01@# Stun.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3015', N'#@value02@#% chance to cast Lv. #@value01@# Slow.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3016', N'#@value02@#% chance to cast Lv. #@value01@# Chaos.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3017', N'#@value02@#% chance to cast Lv. #@value01@# Fire.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3018', N'#@value02@#% chance to cast Lv. #@value01@# Disease.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3019', N'#@value02@#% chance to cast Lv. #@value01@# Poison.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3020', N'#@value02@#% chance to cast Lv. #@value01@# Sleep.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3021', N'#@value02@#% chance to cast Lv. #@value01@# Darkness.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3022', N'#@value02@#% chance to cast Lv. #@value01@# Bleed.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3023', N'#@value01@#% chance to cast #@value02@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'3024', N'#@value02@#% chance to cast #@value03@# when
the item level is over #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4001', N'#@value02@#% chance of reducing Physical
Damage by #@value01@#% the next time you''re hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4002', N'#@value02@#% chance of reducing Magic Damage by #@value01@#% the next time you''re hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4003', N'#@value03@#% chance of reducing the attacker''s
Attack Speed by #@value01@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4004', N'#@value03@#% chance of reducing the attacker''s
Movement Speed by #@value01@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4005', N'#@value01@#% chance of losing MP instead of
HP. (You''ll lose your HP when you don''t
have any MP left.)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4006', N'#@value01@#% chance of becoming invincible for
#@value02@# seconds after being hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4007', N'#@value02@#% chance to cast Lv. #@value01@# Stone.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4008', N'#@value02@#% chance to cast Lv. #@value01@# Freeze.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4009', N'#@value02@#% chance to cast Lv. #@value01@# Stun.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4010', N'#@value02@#% chance to cast Lv. #@value01@# Slow.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4011', N'#@value02@#% chance to cast Lv. #@value01@# Chaos.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4012', N'#@value02@#% chance to cast Lv. #@value01@# Fire.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4013', N'#@value02@#% chance to cast Lv. #@value01@# Disease.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4014', N'#@value02@#% chance to cast Lv. #@value01@# Poison.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4015', N'#@value02@#% chance to cast Lv. #@value01@# Sleep.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4016', N'#@value02@#% chance to cast Lv. #@value01@# Darkness.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4017', N'#@value02@#% chance to cast Lv. #@value01@# Bleed.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4018', N'#@value02@#% chance to cast Lv. #@value01@#
Lightning.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4019', N'#@value01@#% chance to cast #@value02@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4020', N'#@value02@#% chance to cast #@value03@# when
the item level is above #@value01@#.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4021', N'When hit, there is a #@value02@#% chance to increase physical attack +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4022', N'When hit, there is a #@value02@#% chance to increase magic attack +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4023', N'When hit, there is a #@value02@#% chance to increase all elemental damage +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4024', N'When hit, there is a #@value02@#% chance to increase critical power +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4025', N'When hit, there is a #@value02@#% chance to increase critical rate +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4026', N'When hit, there is a #@value02@#% chance to increase attacker attack speed +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'4027', N'When hit, there is a #@value02@#% chance to increase attacker movement speed +#@value03@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5001', N'#@value02@#% chance of reducing MP
consumption by #@value01@# when using the
skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5002', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5003', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5004', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5005', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5006', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5007', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5008', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5009', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5010', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5011', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5012', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5013', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5014', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5015', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5016', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5017', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5018', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5019', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5020', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5021', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5022', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5023', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5024', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5025', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5026', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5027', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5028', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5029', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5030', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5031', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5032', N'When using #@value01@# skill, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5033', N'When using #@value01@# skill, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5034', N'When using #@value01@# skill, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5035', N'When using #@value01@# skill, skill damage is increased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5036', N'When using #@value01@# skill, skill damage is increased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5037', N'When using #@value01@# skill, skill damage is increased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5038', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5039', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5040', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5041', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5042', N'Skill damage will increase by +#@value02@#% when using a #@value01@# skill.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5043', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5044', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5045', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5046', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5047', N'When using #@value01@# type skills, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5048', N'When using #@value01@# skill, the cooldown is decreased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'5049', N'When using #@value01@# skill, skill damage is increased by +#@value02@#%', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6101', N'Sword Upper Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6102', N'Dark Storm Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6103', N'Spiral Stinger Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6104', N'Soul Breeder Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6105', N'Blooding Attack Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6106', N'Divine Drive Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6201', N'Wall of Fire Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6202', N'Magic Missile Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6203', N'Windy Blast Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6204', N'Rock Fist Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6205', N'Fireball Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6206', N'HP Recovery Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6301', N'Uppercut Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6302', N'Dempsey Roll Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6303', N'Shock/Toenail Stab Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6304', N'Powerful Foot Roll Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6305', N'Charge of Savage Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'6306', N'Wild Throw Level +1', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'7001', N'Specified Skill Level +2', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8001', N'Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8002', N'Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8003', N'Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8004', N'Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8005', N'Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'8006', N'Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9001', N'Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9002', N'Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9003', N'Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9004', N'Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9005', N'Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'9006', N'Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10001', N'Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10002', N'Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10003', N'Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10004', N'Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10005', N'Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'10006', N'Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20001', N'Max HP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20002', N'Max MP +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20003', N'Physical Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20004', N'Magic Damage +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20005', N'Physical Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'20006', N'Magic Defense +#@value01@#', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33001', N'#@value02@#% chance of inflicting +#@value01@# additional damage.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33002', N'#@value02@#% chance of inflicting +#@value01@# additional magic damage.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33003', N'#@value02@#% chance of ignoring +#@value01@# Physical Defense.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33004', N'#@value02@#% chance of ignoring +#@value01@# Magic Defense.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33005', N'#@value02@#% chance to restore +#@value01@# HP.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33006', N'#@value02@#% chance to restore +#@value01@# MP.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33007', N'#@value03@#% chance of increasing Physical Damage by +#@value01@# for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33008', N'#@value03@#% chance of increasing Magic Damage by +#@value01@# for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33009', N'#@value03@#% chance of increasing all party members'' Attack Speed by +#@value01@# for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33010', N'#@value02@#% chance of reducing the HP of #@value03@# for #@value01@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33011', N'#@value02@#% chance of all party members recovering +#@value01@# HP.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33012', N'#@value02@#% chance of using level #@value01@# Stone.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33013', N'#@value02@#% chance of using level #@value01@# Freeze.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33014', N'#@value02@#% chance of using level #@value01@# Stun.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33015', N'#@value02@#% chance of using level #@value01@# Slow.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33016', N'#@value02@#% chance of using level #@value01@# Chaos.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33017', N'#@value02@#% chance of using level #@value01@# Fire.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33018', N'#@value02@#% chance of using level #@value01@# Disease.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33019', N'#@value02@#% chance of using level #@value01@# Poison.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33020', N'#@value02@#% chance of using level #@value01@# Sleep.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33021', N'#@value02@#% chance of using level #@value01@# Darkness.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'33022', N'#@value02@#% chance of using level #@value01@# Bleed.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34001', N'#@value02@#% chance of receiving #@value01@#% less physical damage on the next hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34002', N'#@value02@#% chance of receiving #@value01@#% less magic damage on the next hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34003', N'#@value02@#% chance of reducing the attacker''s attack speed by #@value01@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34004', N'#@value02@#% chance of reducing the attacker''s movement speed by #@value01@#% for #@value02@# seconds.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34005', N'#@value02@#% chance of losing MP instead of HP when hit. (HP will be affected if there is no MP)', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34006', N'#@value01@#@ chance of becoming invincible for #@value02@# seconds when hit.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34007', N'#@value02@#% chance of using level #@value01@# Stone.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34008', N'#@value02@#% chance of using level #@value01@# Freeze.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34009', N'#@value02@#% chance of using level #@value01@# Stun.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34010', N'#@value02@#% chance of using level #@value01@# Slow.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34011', N'#@value02@#% chance of using level #@value01@# Chaos.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34012', N'#@value02@#% chance of using level #@value01@# Fire.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34013', N'#@value02@#% chance of using level #@value01@# Disease.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34014', N'#@value02@#% chance of using level #@value01@# Poison.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34015', N'#@value02@#% chance of using level #@value01@# Sleep.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34016', N'#@value02@#% chance of using level #@value01@# Darkness.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34017', N'#@value02@#% chance of using level #@value01@# Bleed.', N'1', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemOptionTable] ([id], [name], [min_value], [max_value]) VALUES (N'34018', N'#@value02@#% chance of using level #@value01@# Lightning.', N'1', N'100')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_ItemTable
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_ItemTable]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_ItemTable]
+GO
+
+CREATE TABLE [dbo].[Base_ItemTable] (
+ [id] int NOT NULL,
+ [name] nvarchar(100) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [inventory_type] int DEFAULT 0 NOT NULL,
+ [RestraintType] int NOT NULL,
+ [ReconstructionMax] int NOT NULL,
+ [Category] int NOT NULL,
+ [Branch] int NOT NULL,
+ [LevelLimit] int NOT NULL,
+ [max_dur] int DEFAULT 0 NOT NULL,
+ [is_socket] int DEFAULT 0 NOT NULL,
+ [max_socket_num] int DEFAULT 0 NOT NULL,
+ [kind] int DEFAULT 0 NOT NULL,
+ [weight] int DEFAULT 0 NOT NULL,
+ [BuyPrice] int NOT NULL,
+ [SellPrice] int NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_ItemTable] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_ItemTable
+-- ----------------------------
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100', N'Fortune Dice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'3333', N'Clovis Box for testing', N'2', N'0', N'0', N'13', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16001', N'Hunter''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16002', N'Fighter''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16003', N'Gladiator''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16004', N'Slaughterer''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16005', N'Warrior''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16006', N'King''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16007', N'Great King''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16008', N'Angelic Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16111', N'Hunter''s Chest', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16121', N'Fighter''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16122', N'Fighter''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16131', N'Gladiator''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16132', N'Gladiator''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16141', N'Slaughterer''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16142', N'Slaughterer''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16151', N'Warrior''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16152', N'Warrior''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16161', N'King''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16162', N'King''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16211', N'Hunter''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16221', N'Fighter''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16231', N'Gladiator''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16241', N'Slaughterer''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16251', N'Warrior''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16261', N'King''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16501', N'Training Hall Gift Ticket 1', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16502', N'Training Hall Gift Ticket 2', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16503', N'Mausoleum Arena Ticket', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16504', N'Training Hall Gift Ticket 4', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16505', N'Training Hall Gift Ticket 5', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16506', N'Training Hall Gift Ticket 6', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16507', N'Training Hall Gift Ticket 7', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16508', N'Training Hall Gift Ticket 8', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16509', N'VIP Pass', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16701', N'Dead Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16702', N'Nepenthese Sprout', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16703', N'Zombie Nepenthese Sprout', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16704', N'Bomi Toadstool', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16705', N'Mandragora''s Root', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16706', N'Treant''s Fruit', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16707', N'Seed of Ice Flower', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16708', N'Poison Flower''s Seed', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20001', N'Fabric Imbued with Magic', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20002', N'White Fabric Imbued with Magic', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20003', N'Dark Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20004', N'Silver Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20005', N'Golden Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20006', N'Mysterious Dye', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20007', N'Water Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20008', N'Scales Imbued with Magic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20009', N'Feather Imbued with Magic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20010', N'Magic-Imbued Essence', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011', N'Magical Rabbit Leather', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20100', N'Alchemist''s Pot', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21001', N'Teddy Bear Body Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21002', N'Teddy Bear Head Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21003', N'Shark Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21004', N'Octopus Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21005', N'Carp Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21006', N'Mantis Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21007', N'Roach Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21008', N'Locust Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022', N'Dark Seal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023', N'Dark Seal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21024', N'Dark Seal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21025', N'Dark Seal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21026', N'Dark Seal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21027', N'Dark Seal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21028', N'White Devil Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21029', N'White Devil Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030', N'White Devil Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031', N'White Devil Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032', N'White Devil Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033', N'White Devil Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21034', N'Blue Seal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21035', N'Blue Seal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21036', N'Blue Seal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21037', N'Blue Seal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21038', N'Blue Seal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21039', N'Blue Seal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21040', N'Red Formal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21041', N'Red Formal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21042', N'Red Formal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21043', N'Red Formal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21044', N'Red Formal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21045', N'Red Formal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21046', N'Swallowtail Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21047', N'Swallowtail Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21048', N'Swallowtail Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21049', N'Swallowtail Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21050', N'Swallowtail Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21051', N'Swallowtail Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21052', N'Hunter Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21053', N'Hunter Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21054', N'Hunter Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21055', N'Hunter Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21056', N'Hunter Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21057', N'Hunter Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21065', N'Red Seal Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21066', N'Red Seal Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21067', N'Red Seal Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21068', N'Red Seal Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21069', N'Red Seal Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21070', N'Red Seal Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21071', N'Plaid Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21072', N'Plaid Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21073', N'Plaid Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21074', N'Plaid Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21075', N'Plaid Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21076', N'Plaid Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21077', N'Night Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21078', N'Night Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21079', N'Night Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21080', N'Night Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21081', N'Night Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21082', N'Night Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21083', N'Plum Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21084', N'Plum Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21085', N'Plum Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21086', N'Plum Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21087', N'Plum Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21088', N'Plum Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21089', N'Red Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21090', N'Red Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21091', N'Red Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21092', N'Red Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21093', N'Red Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21094', N'Red Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21095', N'Red Spider Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21096', N'Red Spider Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21097', N'Red Spider Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21098', N'Red Spider Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21099', N'Red Spider Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21100', N'Red Spider Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21108', N'Brown Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21109', N'Brown Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21110', N'Brown Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21111', N'Brown Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21112', N'Brown Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21113', N'Brown Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21114', N'Hooligan Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21115', N'Hooligan Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21116', N'Hooligan Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21117', N'Hooligan Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21118', N'Hooligan Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21119', N'Hooligan Tie Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21120', N'Bright Uniform Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21121', N'Bright Uniform Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21122', N'Bright Uniform Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21123', N'Bright Uniform Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21124', N'Bright Uniform Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21125', N'Bright Uniform Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21126', N'Rustic Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21127', N'Rustic Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21128', N'Rustic Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21129', N'Rustic Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21130', N'Rustic Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21131', N'Rustic Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21132', N'Dark Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21133', N'Dark Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21134', N'Dark Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21135', N'Dark Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21136', N'Dark Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21137', N'Dark Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21138', N'Conquest Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21139', N'Conquest Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21140', N'Conquest Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21141', N'Conquest Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21142', N'Conquest Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21143', N'Conquest Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21144', N'Brown Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21145', N'Hooligan Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21146', N'Bright Uniform Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21147', N'Rustic Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21148', N'Dark Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21149', N'Conquest Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21185', N'Red Fox Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21186', N'Red Fox Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21187', N'Red Fox Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21188', N'Red Fox Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21189', N'Red Fox Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21190', N'Red Fox Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21191', N'White Blaze Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21192', N'White Blaze Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21193', N'White Blaze Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21194', N'White Blaze Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21195', N'White Blaze Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21196', N'White Sol Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21197', N'White Sol Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21198', N'White Sol Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21199', N'White Sol Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21200', N'White Sol Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21201', N'White Sol Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21202', N'White Sol Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21281', N'White Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21381', N'Orange Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21382', N'Orange Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21383', N'Orange Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21384', N'Orange Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21385', N'Orange Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21386', N'Orange Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21387', N'Orange Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21388', N'Pink Dress Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21389', N'Pink Dress Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21390', N'Pink Dress Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21391', N'Pink Dress Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21392', N'Pink Dress Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21393', N'Pink Dress Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21394', N'Pink Dress Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21395', N'Red Check Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21396', N'Red Check Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21397', N'Red Check Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21398', N'Red Check Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21399', N'Red Check Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21400', N'Red Check Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21401', N'Red Check Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21402', N'Ranger Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21403', N'Ranger Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21404', N'Ranger Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21405', N'Ranger Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21406', N'Ranger Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21407', N'Ranger Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21408', N'Ranger Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21410', N'White Dress Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21411', N'White Dress Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21412', N'White Dress Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21413', N'White Dress Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21414', N'White Dress Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21415', N'White Dress Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21416', N'White Dress Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21417', N'Bee Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21418', N'Angler Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21419', N'Blue Frill Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21420', N'Blue Frill Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21421', N'Blue Frill Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21422', N'Blue Frill Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21423', N'Blue Frill Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21424', N'Blue Frill Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21425', N'Blue Frill Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21426', N'Black Hawk Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21427', N'White Hawk Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21428', N'Pink Hawk Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21429', N'Red Pinned Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21430', N'Purple Pinned Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21431', N'Grey Pinned Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21432', N'Yellow Reggae Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21433', N'Purple Reggae Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21434', N'Green Reggae Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21435', N'Purple Foxy Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21436', N'Red Foxy Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21437', N'Rose Foxy Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21438', N'Grey Trimmed Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21439', N'Red Trim Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21440', N'Pink Trim Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21441', N'Lovely Black Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21442', N'Lovely Yellow Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21443', N'Lovely Red Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21444', N'Cute Yellow Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21445', N'Cute Pink Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21446', N'Cute Black Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21447', N'Floral Black Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21448', N'Floral Red Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21449', N'Floral Yellow Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21450', N'Black Flowing Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21451', N'Grey Flowing Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21452', N'Pink Flowing Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21453', N'Black Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21454', N'Grey Regent Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21455', N'Pink Regent Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21456', N'Grey Apple Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21457', N'Red Apple Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21458', N'Pink Apple Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21459', N'Grey Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21460', N'Red Regent Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21461', N'Pink Regent Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21462', N'Majestic Black Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21463', N'Majestic Yellow Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21464', N'Majestic Red Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21465', N'Black Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21466', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21467', N'Red Regent Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21468', N'Upbeat Red Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21469', N'Upbeat Purple Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21470', N'Upbeat Grey Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21471', N'Red Regent Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21472', N'Plum Regent Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21473', N'Grey Regent Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21474', N'Yellow Tied Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21475', N'Pink Tied Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21476', N'Black Tied Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21477', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21478', N'Pink Regent Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21479', N'Black Regent Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21480', N'Dreamy Yellow Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21481', N'Dreamy Purple Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21482', N'Dreamy Green Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21483', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21484', N'Plum Regent Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21485', N'Green Regent Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21486', N'Wavy Black Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21487', N'Wavy Red Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21488', N'Wavy Yellow Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21489', N'Black Regent Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21490', N'Red Regent Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21491', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21492', N'Purple Wild Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21493', N'Red Wild Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21494', N'Rose Wild Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21495', N'Plum Regent Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21496', N'Red Regent Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21497', N'Rose Regent Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21498', N'White Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21499', N'White Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21500', N'White Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21501', N'White Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21502', N'White Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21503', N'White Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21504', N'Green Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21505', N'Green Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21506', N'Green Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21507', N'Green Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21508', N'Green Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21509', N'Green Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21510', N'Yellow Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21511', N'Yellow Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21512', N'Yellow Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21513', N'Yellow Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21514', N'Yellow Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21515', N'Yellow Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21516', N'Purple Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21517', N'Purple Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21518', N'Purple Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21519', N'Purple Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21520', N'Purple Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21521', N'Purple Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21522', N'Red Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21523', N'Red Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21524', N'Red Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21525', N'Red Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21526', N'Red Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21527', N'Red Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21528', N'Dark Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21529', N'Dark Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21530', N'Dark Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21531', N'Dark Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21532', N'Dark Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21533', N'Dark Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21534', N'Purple Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21535', N'Purple Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21536', N'Purple Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21537', N'Purple Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21538', N'Purple Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21539', N'Purple Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21540', N'Green Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21541', N'Green Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21542', N'Green Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21543', N'Green Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21544', N'Green Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21545', N'Green Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21546', N'Pink Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21547', N'Pink Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21548', N'Pink Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21549', N'Pink Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21550', N'Pink Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21551', N'Pink Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21552', N'Black Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21553', N'Black Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21554', N'Black Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21555', N'Black Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21556', N'Black Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21557', N'Black Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21558', N'White Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21559', N'White Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21560', N'White Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21561', N'White Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21562', N'White Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21563', N'White Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21564', N'Beige Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21565', N'Beige Duchess Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21566', N'Beige Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21567', N'Beige Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21568', N'Beige Duchess Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21569', N'Beige Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21570', N'Purple Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21571', N'Purple Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21572', N'Purple Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21573', N'Purple Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21574', N'Purple Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21575', N'Purple Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21576', N'Green Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21577', N'Green Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21578', N'Green Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21579', N'Green Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21580', N'Green Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21581', N'Green Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21582', N'Purple Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21583', N'Purple Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21584', N'Purple Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21585', N'Purple Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21586', N'Purple Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21587', N'Purple Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21588', N'Black Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21589', N'Black Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21590', N'Black Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21591', N'Black Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21592', N'Black Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21593', N'Black Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21594', N'White Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21595', N'White Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21596', N'White Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21597', N'White Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21598', N'White Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21599', N'White Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21600', N'Beige Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21601', N'Beige Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21602', N'Beige Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21603', N'Beige Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21604', N'Beige Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21605', N'Beige Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21606', N'Green Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21607', N'Green Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21608', N'Green Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21609', N'Green Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21610', N'Green Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21611', N'Green Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21612', N'Purple Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21613', N'Purple Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21614', N'Purple Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21615', N'Purple Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21616', N'Purple Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21617', N'Purple Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21618', N'Grey Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21619', N'Grey Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21620', N'Grey Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21621', N'Grey Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21622', N'Grey Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21623', N'Grey Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21624', N'Red Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21625', N'Red Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21626', N'Red Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21627', N'Red Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21628', N'Red Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21629', N'Red Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21630', N'Black Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21631', N'Black Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21632', N'Black Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21633', N'Black Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21634', N'Black Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21635', N'Black Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21636', N'White Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21637', N'White Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21638', N'White Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21639', N'White Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21640', N'White Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21641', N'White Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21642', N'Upsweep Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21643', N'Upsweep Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21644', N'Upsweep Red Hairstyle Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21645', N'Dandy Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21646', N'Dandy Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21647', N'Dandy Yellow Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21648', N'Pompadour Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21649', N'Pompadour Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21650', N'Pompadour Yellow Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21651', N'Indigo Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21652', N'Indigo Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21653', N'Indigo Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21654', N'Indigo Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21655', N'Indigo Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21656', N'Indigo Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21657', N'Black Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21658', N'Black Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21659', N'Black Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21660', N'Black Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21661', N'Black Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21662', N'Black Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21663', N'Dapple Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21664', N'Dapple Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21665', N'Dapple Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21666', N'Dapple Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21667', N'Dapple Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21668', N'Dapple Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21669', N'Red Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21670', N'Red Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21671', N'Red Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21672', N'Red Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21673', N'Red Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21674', N'Red Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21675', N'Leopard Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21676', N'Leopard Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21677', N'Leopard Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21678', N'Leopard Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21679', N'Leopard Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21680', N'Leopard Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21681', N'White Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21682', N'White Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21683', N'White Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21684', N'White Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21685', N'White Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21686', N'White Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21687', N'Rabbit Head Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21688', N'Rabbit Body Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21689', N'Rabbit Gloves Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21690', N'Rabbit Shoes Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'22001', N'Bleach', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30003', N'Buckthorn Leaf Bread', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30004', N'Grilled Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30005', N'Meat Pie', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30006', N'Cheesecake', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30007', N'Banana Bread', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30008', N'Sweet Potato Bread', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30009', N'Sweet Peony Bread', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30010', N'Wrinkle Moss Juice', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30011', N'Blue Mushroom Whiskey', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30012', N'Root Beer', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30013', N'Quality Wine', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30014', N'Peony Wine', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30015', N'Mysterious Liquor', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30016', N'Fragrant Ancient Moss Rum', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30019', N'Meat Soup', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30020', N'Sadixol', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30025', N'Beginner''s HP Recovery Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30026', N'Miscellaneous Merchant''s HP Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30027', N'Miscellaneous Merchant''s HP Potion (L)', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30028', N'Beginner''s MP Recovery Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30029', N'Miscellaneous Merchant''s MP Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30030', N'Miscellaneous Merchant''s MP Potion (L)', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30031', N'Elixir of Blood Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30032', N'Elixir of Blood Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30033', N'Elixir of Blood Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30034', N'Elixir of Blood Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30035', N'Elixir of Blood Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30036', N'Elixir of Blood Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30037', N'Elixir of Blood Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30038', N'Elixir of Blood Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30039', N'Elixir of Fire Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30040', N'Elixir of Fire Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30041', N'Elixir of Fire Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30042', N'Elixir of Fire Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30043', N'Elixir of Fire Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30044', N'Elixir of Fire Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30045', N'Elixir of Fire Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30046', N'Elixir of Fire Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30047', N'Elixir of Chaos Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30048', N'Elixir of Chaos Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30049', N'Elixir of Chaos Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30050', N'Elixir of Chaos Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30051', N'Elixir of Chaos Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30052', N'Elixir of Chaos Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30053', N'Elixir of Chaos Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30054', N'Elixir of Chaos Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30055', N'Elixir of Strength Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30056', N'Elixir of Strength Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30057', N'Elixir of Strength Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30058', N'Elixir of Strength Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30059', N'Elixir of Strength Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30060', N'Elixir of Strength Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30061', N'Elixir of Strength Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30062', N'Elixir of Strength Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30063', N'Elixir of Stone Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30064', N'Elixir of Stone Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30065', N'Elixir of Stone Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30066', N'Elixir of Stone Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30067', N'Elixir of Stone Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30068', N'Elixir of Stone Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30069', N'Elixir of Stone Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30070', N'Elixir of Stone Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30071', N'Elixir of Ice Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30072', N'Elixir of Ice Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30073', N'Elixir of Ice Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30074', N'Elixir of Ice Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30075', N'Elixir of Ice Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30076', N'Elixir of Ice Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30077', N'Elixir of Ice Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30078', N'Elixir of Ice Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30079', N'Elixir of Slow Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30080', N'Elixir of Slow Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30081', N'Elixir of Slow Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30082', N'Elixir of Slow Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30083', N'Elixir of Slow Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30084', N'Elixir of Slow Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30085', N'Elixir of Slow Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30086', N'Elixir of Slow Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30087', N'Elixir of Poison Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30088', N'Elixir of Poison Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30089', N'Elixir of Poison Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30090', N'Elixir of Poison Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30091', N'Elixir of Poison Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30092', N'Elixir of Poison Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30093', N'Elixir of Poison Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30094', N'Elixir of Poison Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30095', N'Elixir of Disease Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30096', N'Elixir of Disease Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30097', N'Elixir of Disease Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30098', N'Elixir of Disease Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30099', N'Elixir of Disease Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30100', N'Elixir of Disease Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30101', N'Elixir of Disease Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30102', N'Elixir of Disease Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30103', N'Elixir of Sleep Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30104', N'Elixir of Sleep Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30105', N'Elixir of Sleep Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30106', N'Elixir of Sleep Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30107', N'Elixir of Sleep Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30108', N'Elixir of Sleep Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30109', N'Elixir of Sleep Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30110', N'Elixir of Sleep Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30111', N'Elixir of Darkness Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30112', N'Elixir of Darkness Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30113', N'Elixir of Darkness Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30114', N'Elixir of Darkness Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30115', N'Elixir of Darkness Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30116', N'Elixir of Darkness Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30117', N'Elixir of Darkness Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30118', N'Elixir of Darkness Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30119', N'Mrs. Winger''s Apple Soup', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30120', N'Gorgon''s HP Potion', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'230', N'38')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30121', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30122', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30123', N'Gorgon''s Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'17', N'100', N'0', N'0', N'0', N'1', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30124', N'Strong HP Potion', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30125', N'Powerful HP Potion', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'3730', N'616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30126', N'Holy HP Potion', N'2', N'0', N'0', N'13', N'1', N'65', N'100', N'0', N'0', N'0', N'1', N'5030', N'830')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30127', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'3', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30128', N'Estel''s MP Potion', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'230', N'38')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30129', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30130', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30131', N'Estel''s Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'17', N'100', N'0', N'0', N'0', N'1', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30132', N'Strong Mana Potion', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30133', N'Powerful Mana Potion', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'3730', N'616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30134', N'Holy Mana Potion', N'2', N'0', N'0', N'13', N'1', N'65', N'100', N'0', N'0', N'0', N'1', N'5030', N'830')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30136', N'Delicious Rat Dish', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30138', N'Soul Collector', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30139', N'Joheim''s Special Sauce', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30140', N'Clown Mushroom Soup', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30141', N'Hard Boiled Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30142', N'Fried Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30143', N'Buckthorn Leaf Soup', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30144', N'Buckthorn Leaf Tea', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30145', N'Buckthorn Leaf Cookie', N'2', N'0', N'0', N'13', N'1', N'14', N'100', N'0', N'0', N'0', N'1', N'400', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30146', N'Meat Steak', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30147', N'Meat Ball Sandwich', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30149', N'Fried Potato', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30150', N'Potato Soup', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30151', N'Skewered Potatoes', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30152', N'Peony Tea', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'1', N'1040', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30153', N'Peony Soup', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30154', N'Peony Cookie', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30155', N'Wrinkle Moss Tea', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30156', N'Wrinkle Moss Soup', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30158', N'Red Wine', N'2', N'0', N'0', N'13', N'1', N'8', N'100', N'0', N'0', N'0', N'1', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30159', N'Rose Wine', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30160', N'White Wine', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30161', N'Blue Mushroom Soup', N'2', N'0', N'0', N'13', N'1', N'18', N'100', N'0', N'0', N'0', N'1', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30162', N'Grilled Blue Mushroom', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30163', N'Fried Blue Mushroom', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30164', N'Fisherman Herb Soup', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30165', N'Fisherman Herb Tea', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30166', N'Fisherman Herb Cookie', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30167', N'Moss Soup', N'2', N'0', N'0', N'13', N'1', N'28', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30168', N'Moss Tea', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30169', N'Moss Salad', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30170', N'Grilled Rat Meat', N'2', N'0', N'0', N'13', N'1', N'23', N'100', N'0', N'0', N'0', N'1', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30171', N'Rat Meat Soup', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'1', N'1040', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30172', N'Steamed Rat Meat', N'2', N'0', N'0', N'13', N'1', N'29', N'100', N'0', N'0', N'0', N'1', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30173', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30174', N'Weak HP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'190', N'31')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30175', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30176', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1560', N'257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30177', N'Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30178', N'Strong HP Potion', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'4080', N'673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30179', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30180', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'190', N'31')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30181', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30182', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1560', N'257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30183', N'Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30184', N'Strong Mana Potion', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'4080', N'673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30185', N'Decent HP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30186', N'High Quality HP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30187', N'Decent MP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30188', N'Great MP Potion (training)', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30189', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30190', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30191', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30192', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30193', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30194', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30195', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30196', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30197', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30198', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30199', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30200', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30201', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30202', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30203', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30204', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30205', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30206', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30207', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30208', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30209', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30210', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30211', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30212', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30213', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30214', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30215', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30216', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30217', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30218', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30219', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30220', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30221', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30222', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30223', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30224', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30225', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30226', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30227', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30228', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30229', N'Boiled Egg', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30230', N'Olive Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30231', N'Butter Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30232', N'Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30233', N'Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30234', N'Herb Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30235', N'Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30236', N'Wine Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30237', N'Olive Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30238', N'Butter Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30239', N'Garlic Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30240', N'Cheese Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30241', N'Herb Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30242', N'Parsley Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30243', N'Wine Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30244', N'Olive Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30245', N'Butter Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30246', N'Garlic Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30247', N'Cheese Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30248', N'Herb Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30249', N'Parsley Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30250', N'Wine Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30251', N'Olive Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30252', N'Butter Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30253', N'Garlic Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30254', N'Cheese Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30255', N'Herb Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30256', N'Parsley Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30257', N'Wine Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30258', N'Olive Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30259', N'Butter Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30260', N'Garlic Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30261', N'Cheese Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30262', N'Herb Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30263', N'Parsley Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30264', N'Wine Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30265', N'Olive Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30266', N'Butter Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30267', N'Garlic Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30268', N'Cheese Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30269', N'Herb Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30270', N'Parsley Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30271', N'Wine Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30272', N'Olive Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30273', N'Butter Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30274', N'Garlic Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30275', N'Cheese Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30276', N'Herb Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30277', N'Parsley Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30278', N'Wine Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30279', N'Spicy Olive Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30280', N'Spicy Butter Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30281', N'Spicy Garlic Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30282', N'Spicy Cheese Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30283', N'Spicy Herb Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30284', N'Spicy Parsley Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30285', N'Spicy Wine Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30286', N'Olive Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30287', N'Butter Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30288', N'Garlic Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30289', N'Cheese Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30290', N'Herb Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30291', N'Parsley Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30292', N'Wine Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30293', N'Olive Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30294', N'Butter Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30295', N'Garlic Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30296', N'Cheese Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30297', N'Herb Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30298', N'Parsley Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30299', N'Wine Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30300', N'Olive Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30301', N'Butter Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30302', N'Garlic Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30303', N'Cheese Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30304', N'Herb Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30305', N'Parsley Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30306', N'Wine Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30307', N'White Olive Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30308', N'White Butter Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30309', N'White Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30310', N'White Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30311', N'White Herb Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30312', N'White Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30313', N'White Wine Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30314', N'Olive Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30315', N'Butter Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30316', N'Garlic Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30317', N'Cheese Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30318', N'Herb Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30319', N'Parsley Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30320', N'Wine Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30321', N'Sound Stone Fragment', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30322', N'Golden Seal Bomb (Lv.1)', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30323', N'Golden Seal Bomb (Lv.10)', N'2', N'0', N'0', N'13', N'3', N'10', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30324', N'Golden Seal Bomb (Lv.20)', N'2', N'0', N'0', N'13', N'3', N'20', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30325', N'Golden Seal Bomb (Lv.30)', N'2', N'0', N'0', N'13', N'3', N'30', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30326', N'Golden Seal Flame Bomb (Lv.30)', N'2', N'0', N'0', N'13', N'3', N'30', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30327', N'Golden Seal Flame Bomb (Lv.40)', N'2', N'0', N'0', N'13', N'3', N'40', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30328', N'Goliath Gorilla Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30329', N'Cyborg Gorilla Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30330', N'Sinful Seraph Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30331', N'Skeleton Archer Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30332', N'Olive Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30333', N'Butter Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30334', N'Garlic Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30335', N'Cheese Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30336', N'Herb Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30337', N'Parsley Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30338', N'Wine Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30339', N'Rosemary Olive Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30340', N'Rosemary Butter Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30341', N'Rosemary Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30342', N'Rosemary Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30343', N'Rosemary Herb Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30344', N'Rosemary Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30345', N'Rosemary Wine Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30346', N'Olive Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30347', N'Butter Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30348', N'Garlic Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30349', N'Cheese Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30350', N'Herb Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30351', N'Parsley Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30352', N'Wine Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30353', N'Olive Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30354', N'Butter Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30355', N'Garlic Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30356', N'Cheese Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30357', N'Herb Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30358', N'Parsley Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30359', N'Wine Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30360', N'Olive Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30361', N'Butter Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30362', N'Garlic Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30363', N'Cheese Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30364', N'Herb Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30365', N'Parsley Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30366', N'Wine Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30367', N'Olive Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30368', N'Butter Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30369', N'Garlic Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30370', N'Cheese Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30371', N'Herb Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30372', N'Parsley Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30373', N'Wine Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30991', N'Butcher Morph potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30992', N'Eyebat Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30993', N'Gorilla Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30994', N'Wriggler Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30995', N'Chicken Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30996', N'Zombie Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30997', N'Mandragora Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30999', N'"Go', N'0', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31001', N'HP Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31002', N'HP Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31003', N'HP Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31004', N'HP Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31005', N'HP Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31006', N'HP Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31007', N'HP Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31008', N'HP Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31009', N'HP Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31010', N'HP Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31011', N'MP Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31012', N'MP Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31013', N'MP Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31014', N'MP Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31015', N'MP Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31016', N'MP Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31017', N'MP Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31018', N'MP Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31019', N'MP Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31020', N'MP Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31021', N'Skill Point Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31022', N'Skill Point Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31023', N'Skill Point Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31024', N'Skill Point Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31025', N'Skill Point Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31026', N'Skill Point Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31027', N'Skill Point Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31028', N'Skill Point Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31029', N'Skill Point Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31030', N'Skill Point Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31031', N'Physical Damage Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31032', N'Physical Damage Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31033', N'Physical Damage Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31034', N'Physical Damage Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31035', N'Physical Damage Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31036', N'Physical Damage Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31037', N'Physical Damage Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31038', N'Physical Damage Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31039', N'Physical Damage Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31040', N'Physical Damage Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31041', N'Physical Defense Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31042', N'Physical Defense Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31043', N'Physical Defense Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31044', N'Physical Defense Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31045', N'Physical Defense Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31046', N'Physical Defense Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31047', N'Physical Defense Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31048', N'Physical Defense Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31049', N'Physical Defense Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31050', N'Physical Defense Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31051', N'Magic Damage Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31052', N'Magic Damage Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31053', N'Magic Damage Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31054', N'Magic Damage Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31055', N'Magic Damage Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31056', N'Magic Damage Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31057', N'Magic Damage Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31058', N'Magic Damage Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31059', N'Magic Damage Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31060', N'Magic Damage Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31061', N'Magic Defense Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31062', N'Magic Defense Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31063', N'Magic Defense Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31064', N'Magic Defense Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31065', N'Magic Defense Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31066', N'Magic Defense Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31067', N'Magic Defense Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31068', N'Magic Defense Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31069', N'Magic Defense Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31070', N'Magic Defense Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37001', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37002', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37003', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37004', N'Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'660', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37005', N'Best HP Potion', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37006', N'Poor HP Elixir', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37007', N'Decent HP Elixir', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37008', N'Great HP Elixir', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37009', N'Best HP Elixir', N'2', N'0', N'0', N'13', N'1', N'40', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37010', N'Inferior HP Elixir', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37011', N'Standard HP Elixir', N'2', N'0', N'0', N'13', N'1', N'50', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37012', N'Improved HP Elixir', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37013', N'Superior HP Elixir', N'2', N'0', N'0', N'13', N'1', N'60', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37101', N'Training Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38001', N'Worst MP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38002', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38003', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38004', N'Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'660', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38005', N'Best MP Potion', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38006', N'Poor MP Elixir', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38007', N'Decent MP Elixir', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38008', N'Great MP Elixir', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38009', N'Best MP Elixir', N'2', N'0', N'0', N'13', N'1', N'40', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38010', N'Inferior Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38011', N'Standard Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'50', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38012', N'Improved Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38013', N'Superior Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'60', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38101', N'Training Low MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38102', N'Resurrect Party Member Scroll', N'2', N'0', N'0', N'39', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38103', N'Resurrect All Party Members Scroll', N'2', N'0', N'0', N'39', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'50000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38104', N'Alchemist''s Jar Lv. 20', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38105', N'Alchemist''s Jar Lv. 30', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38106', N'Alchemist''s Jar Lv. 40', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38107', N'Alchemist''s Jar Lv. 45', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38108', N'Alchemist''s Jar Lv. 50', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38109', N'Alchemist''s Jar Lv. 55', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38110', N'Alchemist''s Jar Lv. 60', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38111', N'Magic Chest of Change Lv. 20', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38112', N'Magic Chest of Change Lv. 30', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38113', N'Magic Chest of Change Lv. 40', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38114', N'Magic Chest of Change Lv. 45', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38115', N'Magic Chest of Change Lv. 50', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38116', N'Magic Chest of Change Lv. 55', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38117', N'Magic Chest of Change Lv. 60', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40001', N'Fang', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40002', N'Fish Soldier''s Scales', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40003', N'Blue Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40004', N'Yellow Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40005', N'Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40006', N'Father William''s Moonshine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40007', N'Arrowhead', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40008', N'Murella''s Son''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40009', N'Georg''s Family Treasure', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40010', N'Pouch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40011', N'Mrs. Winger''s Family Treasure', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40012', N'Canal Pass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40013', N'Doll Making Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40014', N'Suspicious Symbol', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40015', N'Militia Member Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40016', N'Mayor''s Secret Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40017', N'Voucher', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40018', N'Damaged Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40019', N'Repaired Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40020', N'Jewel Studded Steel Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40021', N'Steel Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40022', N'Canal Key 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40023', N'Right Door of Hall 1F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40024', N'Left Door of Hall 1F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40025', N'Unused', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40026', N'Canal Key 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40027', N'Training Hall Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40028', N'Poorly Made Cannon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40029', N'Eyebat Wing', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40030', N'Spirit Stone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40031', N'Nadia''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40032', N'Coin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40033', N'Bone Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40034', N'Bone Collector''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40035', N'Skeleton''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40036', N'Skeleton Soldier''s Equipment Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40037', N'Harvest Festival Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40038', N'Harvest Festival Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40039', N'Grindstone Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40040', N'Iron Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40041', N'Lost Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40042', N'Lantern Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40043', N'Skeleton''s Finger Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40044', N'Skeleton''s Clean Molar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40045', N'Skeleton Lancer''s Spear Pole', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40046', N'Unknown Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40047', N'Icon_16recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40048', N'Icon_23recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40049', N'Icon_32recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40050', N'Icon-40recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40051', N'Hardcover', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40052', N'Training Hall Key Free Pass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40053', N'Training Hall Key Flier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40054', N'Rosemary''s Royal Recipe Page 16', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40055', N'Rosemary''s Royal Recipe Page 23', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40056', N'Rosemary''s Royal Recipe Page 32', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40057', N'Rosemary''s Royal Recipe Page 40', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40058', N'Book of Death', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40059', N'Book Found in the Library', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40060', N'Training Hall Graduation Certificate', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40061', N'Record: Training Hall Cleared in 15 min', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40062', N'Record: Training Hall Cleared in 12 min', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40063', N'Sealed Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40064', N'Order from Home Country', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40065', N'Mysterious Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40066', N'Mysterious Object', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40067', N'Poison''s Library Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'55', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40068', N'Library Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40069', N'Silver Utensil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40070', N'Fresh Apples', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40071', N'Damaged Kitchen Knife', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40072', N'Frighteningly Sharp Kitchen Knife', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40073', N'Fake Butcher Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40074', N'3rd Joint of Lobster''s Left Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40075', N'Tourmaline Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40076', N'Tantalus Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40077', N'Old Cheese', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40078', N'Wood Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40079', N'Hard Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40080', N'Nitroglycerine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40081', N'Dead Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40082', N'Butcher Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40083', N'Evil Divination for Fun and Profit Book 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40084', N'Evil Divination for Fun and Profit Book 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40085', N'Evil Divination for Fun and Profit Book 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40086', N'Nomi Nomi''s Stilt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40087', N'Nomi Nomi''s Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40089', N'Red Skeleton Soldier''s Eye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40090', N'Maid Apron', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40091', N'Nomi Nomi Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40092', N'Sexy Haken Hind Legs', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40093', N'Mousetrap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40094', N'Fire Sorcerer''s Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40095', N'Fire Sorcerer''s Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40096', N'Fire Sorcerer''s Hot Skirt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40097', N'Maid''s Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40098', N'Maid''s Shoes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40099', N'Mole Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40100', N'Perm Conditioner', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40101', N'Hair Straightener', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40102', N'Hair Dye Solution', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40103', N'Damaged Gearbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40104', N'Repaired Gearbox ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40106', N'Raw Chicken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40107', N'Boiled Chicken with Ginseng', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40108', N'Great Sorcerer''s Great Magic Book ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40109', N'Golden Gear Small', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40110', N'Unreturned Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40111', N'Book of Knowledge', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40112', N'Magic Fingerprint', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40113', N'Cardboard Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40114', N'Lost Page 15', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40115', N'Lost Page 18', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40116', N'Lost Page 20', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40117', N'Skeleton Soldier''s Challenge Request', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40118', N'Ignoble Challenge Request', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40119', N'Scientist''s Afro Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40120', N'Ursula''s Tear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40121', N'Haken Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40122', N'Snake Head', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40123', N'A Letter for Poison', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40124', N'Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40125', N'Silver Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40126', N'Bronze Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40127', N'Tool Set', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40128', N'Secret Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40129', N'Non-melting Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40130', N'Jewel Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40131', N'Left over candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40132', N'Tough Seaweed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40133', N'Haken''s Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40134', N'Tree thorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40136', N'Hard Marbes bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40137', N'Tantalus Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40138', N'Doll Making Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40139', N'Haken''s Vinyl', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40140', N'Zombie Eyeball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40141', N'Snake Oil', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40142', N'Ceramic Vase', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40143', N'Water Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40144', N'Soap', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40145', N'Bath melt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40146', N'Fresh Water', N'4', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40147', N'Marbes'' ax blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40148', N'Red Fruit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40150', N'Angolier''s Down Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40151', N'Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40152', N'Contaminated Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40153', N'Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40154', N'Vapor Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40155', N'Haken''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40156', N'Cursed Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40157', N'Pieces of Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40159', N'Tamla', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40160', N'Cursed Glove''s Arm', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40162', N'Red Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40163', N'Hard Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40164', N'Powerful Forbidden Potion', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40165', N'Empty Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40166', N'Full Bucket', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40167', N'Empty Bucket', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40168', N'Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40169', N'Rejoin Command', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40170', N'Disarming equipment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40171', N'Full-strength bleach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40172', N'Breaking Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40173', N'Broach', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40174', N'Mirror Fragment', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40175', N'Piece of Summoner''s Robe', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40177', N'Italian Towel', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40178', N'Haken Feet', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40179', N'Weak Bone', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40180', N'Snake Dog', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40181', N'Monster Plant Blood', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40182', N'Magical Shield ', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40183', N'Water Plant', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40184', N'Gina''s Letter', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40185', N'Dog Tag Route ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40186', N'Hourglass Route', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40187', N'Labyrinth Escape Route', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40188', N'Annex Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40189', N'Warehouse Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41113', N'Giant Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41114', N'Crimson Gloves'' Parasite', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41115', N'Balloon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41116', N'Normal Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41117', N'Ugly Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41118', N'Swimming Goggles', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41119', N'Raw Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41120', N'Boiled Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41121', N'Charcoal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41122', N'Water Collector', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41123', N'Filter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41124', N'Golden Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41127', N'Crimson Gloves'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41128', N'High Quality Bandage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41129', N'Axe Handle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41130', N'Latch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41131', N'Clock''s Minute Hand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41132', N'Clock''s Second Hand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41133', N'Clock''s Pendulum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41134', N'Bronze Skull Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41135', N'Spare Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41136', N'Gloves'' Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41137', N'Angolier''s Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41138', N'Missing Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41139', N'Super Giant Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41140', N'Library Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41141', N'Collapsed Halls Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41142', N'Guest Villa Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41143', N'Vivarium Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41144', N'Fish Archer''s Bow', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41145', N'Wine Bottle', N'4', N'0', N'0', N'90', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41146', N'Armored Butcher''s Gauntlet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41147', N'Cork', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41148', N'Past Record of Curtis Castle (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41149', N'Past Record of Curtis Castle (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41150', N'Past Record of Curtis Castle (3)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41151', N'Rotten Milk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41152', N'Broken Umbrella', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41153', N'Soybean Paste', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41154', N'Maple Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41155', N'Old Candlestick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41156', N'Red Chili Powder', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41157', N'Vinegar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41158', N'Starch Syrup', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41159', N'Garden Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41160', N'Beef (600g)', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41161', N'Librarian''s Diary (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41162', N'Librarian''s Diary (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41163', N'Chili Bean Paste', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41164', N'Giant Cannon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41165', N'Box Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41166', N'Rusty Mechanic Device II', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41167', N'Rusty Mechanic Device III', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41168', N'Poison''s Dress', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41169', N'Cataphract''s Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41170', N'Dewey Decimator''s Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41171', N'Joheim''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41172', N'Estel''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41173', N'Gorgon''s Note', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41174', N'Do it in a Week Blah Blah...', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41175', N'Chick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41176', N'Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41177', N'Bounced Check of Defeat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41178', N'Poison''s Order Form', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41179', N'Suspicious Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41180', N'Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41181', N'Diver''s Montage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41182', N'Diving Suit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41183', N'Expert Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41184', N'Super Genius Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41185', N'Gorilla''s fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41186', N'Training Voucher', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41187', N'Crazy Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41188', N'Baldness Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41189', N'Poison Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41190', N'Firefly', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41191', N'Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41192', N'Earthworm', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41193', N'Doggy Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41194', N'Four-Leaf Clover', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41195', N'Carrot', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41196', N'Spinach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41197', N'Sesame Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41198', N'Grasshopper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'55', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41199', N'Sow Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'22', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41200', N'Poison Grasshopper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41201', N'Cockroach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'11', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41202', N'Helmet Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'54')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41203', N'Stag Beetle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41204', N'Long-Horned Beetle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41205', N'Animal''s face', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41206', N'Acorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41207', N'Purple Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41208', N'Red Rose', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41209', N'Yellow Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41210', N'Orange Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41211', N'Red Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41212', N'Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41214', N'Wide Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41215', N'Painkiller Herb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41216', N'Tree Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41217', N'Tough Gorilla Skin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41218', N'Soft Gorilla Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41219', N'Smelly Gorilla Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41220', N'Magical Soil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41221', N'Photograph of Memories', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41222', N'Bug Catcher Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41224', N'Tasty Lunchbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41225', N'Empty Lunchbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41226', N'Golden Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41227', N'Sweet Potato Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41228', N'Perfect Seed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41229', N'Supplies', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41230', N'Mysterious Pollen ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41231', N'Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41232', N'Ballista Arrow', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41233', N'Power Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41234', N'Energy Accelerator', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41235', N'Scarlet Buff Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41236', N'Experimental Toolbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41237', N'Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41238', N'Pink Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41239', N'Weak Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41240', N'Green Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41241', N'Alchemy Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41242', N'Torn Alchemy Diary Page 192', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41243', N'Torn Alchemy Diary Page 193', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41244', N'Torn Alchemy Diary Page 194', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41245', N'Torn Alchemy Diary Page 195', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41246', N'Mercury', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41247', N'Antion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41248', N'Bone Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41249', N'Mixed Gold Materials', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41250', N'Green Frog Hearts that are Still Beating (3)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41251', N'Female Hair Strands (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41252', N'Black Roses (4)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41253', N'Claw Containing the Hooting Sound of an Owl (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41254', N'Ten Year Old Toad Breath (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41255', N'100 Year Old Clear Strained Rice Wine with Little Bit of Fat and Soy Sauce', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41256', N'Ornament Containing a Soul (Buff)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41257', N'Normal Mirror', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41258', N'Salt of Truth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41259', N'Gold Glue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41261', N'Duck Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41262', N'Deliciously Cooked Duck', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41263', N'Coal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41264', N'Broom Missing Some Teeth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41265', N'Bottle with Broken Neck', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41266', N'Tattered Silk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41267', N'Indian Curry Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41269', N'Gold', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41270', N'Cipher''s Research Journal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41271', N'Monster DNA', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41272', N'Erlenmeyer Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41273', N'Bipolar Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41274', N'White Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41275', N'Black Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41276', N'Nightglow Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41277', N'Antidote Ingredients', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41278', N'Spider Lady''s Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41280', N'Bone Butcher''s Love Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41281', N'Spider Lady''s Leg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41282', N'Zombie Scientist''s Refusal Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41283', N'Hair Dye Reagent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41284', N'Straighten Reagent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41288', N'Sweet Moodie', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41289', N'Sour Lemon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41290', N'Fresh Raw Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41291', N'Fungus Cheese', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41292', N'Dry Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41293', N'Seraph Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41294', N'Soldier Hat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41295', N'Soldier''s Pants', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41296', N'Solder''s Weapon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41298', N'Poisonous Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41299', N'Container Filled with Poisonous Plants', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41300', N'Doll Making Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41301', N'Moldy Bread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41302', N'Shed Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41303', N'Sweet Fruit Tart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41304', N'Hard Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41305', N'Large Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41306', N'Long Chinese Holly', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41307', N'Brand''s Log Vol. 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41308', N'Brand''s Personal Notes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41309', N'Brand''s Log Vol. 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41310', N'Brand''s Log Vol. 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41311', N'Purple Potion Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41312', N'Blue Medicine Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41313', N'Red Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41314', N'Undia''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41315', N'Electric Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41316', N'Nomi Nomi Leg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41317', N'Thing Skin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41318', N'Clockwork', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41319', N'Outer Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41320', N'Nomi Nomi Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41321', N'Prison''s Ancient Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41322', N'Old Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41323', N'Steed Succu Cubic', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41324', N'Equipment Bag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41325', N'Magic Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41326', N'Blood Soaked Handkerchief', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41327', N'Zombie Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41328', N'Pink Shoe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41329', N'Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41330', N'Iron Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41331', N'Berial''s Wings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41332', N'Dark Red Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41333', N'Tied Up Soldier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41334', N'Cataphract''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41335', N'Hourglass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41336', N'Doomsday Clock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41337', N'Ghost''s Wine Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41338', N'Rat Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41339', N'Cursed Cataphract Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41340', N'Weapon Craft Directions (100)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41341', N'Silky Smooth Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41342', N'Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41343', N'Explosive Cocktail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41344', N'Cinnamon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41345', N'Oregano', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41346', N'Maid''s Upper Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41347', N'Maid''s Lower Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41348', N'Giant Iron Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'4500', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41349', N'Orgeous'' Paperweight 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41350', N'Orgeous'' Paperweight 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41351', N'Orgeous'' Paperweight 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41352', N'Orgeous'' Magic Mirror', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41353', N'Tiara of Corrupt Souls', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41354', N'Zordic''s Glasses', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41355', N'Nadia''s Memo', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41356', N'Missing Soldier''s Dog Tag 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41357', N'Missing Soldier''s Dog Tag 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41358', N'Missing Soldier''s Dog Tag 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41359', N'Hair with Soul', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41360', N'Medal of Glory', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41361', N'Small Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41362', N'Medium Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41363', N'Large Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41364', N'Duster', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41365', N'Stick with a Good Grip', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41366', N'Gorgon''s Emergency Money', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41367', N'Training Hall 10F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41368', N'Historic Record 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41369', N'Historic Record 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41370', N'Historic Record 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41371', N'Pierre''s Scattered Bones', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41372', N'Fragment of Pamela', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41373', N'Pamela''s Crushed Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41374', N'Pamela''s Repaired Parts', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41375', N'Pamela''s Repaired Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41376', N'Thingy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41377', N'Translated Training Hall Record', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41378', N'Clockmaker''s Clue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41379', N'Past Record 6', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41380', N'Pamela''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41381', N'Minotauros Whiskers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41382', N'Angolier''s Eyelash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41383', N'Needler''s Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41384', N'Large Cardboard Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41385', N'Strawberry Milk Cow Box Costume', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41386', N'Seraph Shoulder Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41387', N'Seraph Chest Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41388', N'Seraph Leg Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41389', N'Yellow Skull Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41390', N'Book of Lamentation', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41391', N'Treasure Map', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41392', N'Teddy Bear Juda', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41393', N'Goldfish', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41394', N'Engagement Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41395', N'Lyrics for Ursula', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41396', N'Etin''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41397', N'Bath Herb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41398', N'Bath Towel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41399', N'Chewed and Discarded Gum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41400', N'Nail Clipper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41401', N'Disposable Shampoo', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41402', N'Fish Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41403', N'Lightning Wand', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41404', N'Nadia''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41405', N'Tracy''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41406', N'Patricia''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41407', N'Really Delicious Looking Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41408', N'Usable Pipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41409', N'Untuned Flute', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41410', N'Snake Charming Flute', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41411', N'Bounced Check of Death', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41412', N'Fish Officer''s Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41413', N'Empty Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41414', N'Straw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41415', N'Bone Collector''s Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41416', N'Bone Collector''s Spine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41417', N'Gorilla Hair Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41418', N'Lift Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41419', N'Lift Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41420', N'Lift Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41421', N'Empty Bowl', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41422', N'Dumpling Ramen', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41423', N'Thing''s Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41424', N'Researcher''s Note 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41425', N'Researcher''s Note 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41426', N'Researcher''s Note 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41427', N'Experimental Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41428', N'Graduated Cylinder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41429', N'Experimental Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41430', N'Small Clean Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41431', N'Medium Clean Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41432', N'Mecha Gorilla''s Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41433', N'Mecha Gorilla''s Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41434', N'Mecha Gorilla''s Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41435', N'Other World''s Passport', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41436', N'Dmitry''s Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41437', N'Dmitry''s Research Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41438', N'Dmitry''s Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41439', N'Nepenthes Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41440', N'Black Gorilla''s Coarse Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41441', N'Black Gorilla''s Curly Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41442', N'Black Gorilla''s Thin Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41443', N'Red Gorilla''s Very Long Eyelash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41444', N'Red Gorilla''s Long Chest Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41445', N'Suspicious Black Gorilla''s Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41446', N'Latest Fashion Magazine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41447', N'Nepenthes Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41448', N'Poorly Made Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41449', N'Bald Gorilla''s DNA', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41450', N'Helm''s Wings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41451', N'Nepenthes Thorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41452', N'Goliath Gorilla''s Horn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41453', N'Smooth Gorilla Fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41454', N'Red Head Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41455', N'Resurrection Potion for Animals', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41456', N'Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41457', N'Herbicide Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41458', N'Herbicide', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41459', N'Certificate of Proof of Being from Other World', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41460', N'Bone Collector''s Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41461', N'Introduction to Alchemy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41462', N'Bronze', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41463', N'Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41464', N'Yellow Paint', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41465', N'Burnt Black Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41466', N'Gold Bar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41467', N'Damaged Chisel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41468', N'Chisel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41469', N'Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41470', N'Copy of the Ten Commandments', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41471', N'Gigantic Nepenthes Seed', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41472', N'Bottle of Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41473', N'Milk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41474', N'Cheeseburger', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41475', N'Growth Hormone Potion', N'4', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41476', N'Unidentified Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41477', N'Unidentified Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41478', N'Good Looking Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41479', N'Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41480', N'Onion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41481', N'Black Gorilla''s Iron Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41482', N'Dead Body of Teenage Nepenthes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41483', N'Upgrade Project Document 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41484', N'Upgrade Project Document 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41485', N'Upgrade Project Document 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41486', N'Red Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41487', N'Blue Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41488', N'Green Syringe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41489', N'Soldiers'' Blood Samples', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41490', N'Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41491', N'Spider Camouflage Suit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41492', N'Well Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41493', N'Whiskey', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41494', N'Upgrade Catalyst', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41495', N'Ellagore Drive', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41496', N'Antipyretic', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41497', N'Sand Golem''s Sand Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41498', N'Rusty Lock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41499', N'Guard''s Heritage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41500', N'Mr. Heo''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41501', N'Mandragora with a Nice Voice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41502', N'Ginseng', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41503', N'Ginseng Porridge', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41504', N'Chick Grave Number Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41505', N'Zombie Chick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41506', N'Coffee Beans', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41507', N'Baked Beans', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41508', N'Espresso', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41509', N'Bread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41510', N'Diaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41511', N'Sandpaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41512', N'Bread Soaked in Tears', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41513', N'Wet Diaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41514', N'Sandpaper of Bloody Tears', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41515', N'Clergyman''s Collar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41516', N'Nomi Nomi Commandments', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41517', N'Personality Emulsifier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41518', N'Potato Money', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41519', N'Ink', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41520', N'Left Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41521', N'Center Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41522', N'Right Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41523', N'Researcher''s Document', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41524', N'Researcher''s Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41525', N'Researcher''s Record', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41526', N'Lab Plug', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41527', N'Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41528', N'High Molar Acid', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41529', N'Vending Machine Coin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41530', N'Birthday Gift', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41531', N'Elite Angolier''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41532', N'Prison Key 1', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41533', N'Prison Key 2', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41534', N'Tombstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41535', N'Growth Hormone Releaser Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41536', N'Massive Cheeseburger Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41537', N'Ginseng Porridge Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41538', N'Hair Restorer Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41539', N'Empty Power Cell', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41540', N'Charged Power Cell', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41541', N'Howard''s Note', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41542', N'Venus F', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41543', N'Zeus D', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41544', N'Refrigerant Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41545', N'Undea''s Tissue Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41546', N'Phenol', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41547', N'Starch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41548', N'Citric Acid', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41549', N'Multi Vitamin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41550', N'Iron Content', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41551', N'Green Insignia', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41552', N'Sock Puppet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41553', N'Dead Man''s Fragrance', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41554', N'Thick Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41555', N'Dried Thick Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41556', N'Suspicious Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41557', N'Uniform Order Form', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41558', N'Poison: Birth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41559', N'Poison: Childhood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41560', N'Poison: Trials', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41561', N'Poison: Tribulations', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41562', N'Poison: Resurrection', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41563', N'Poison: Current', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41564', N'Poison: Memoire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41565', N'Empty Bottle', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41566', N'Full Bottle', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41567', N'Chick Doll', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41568', N'Prison Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41569', N'Tyrant''s Axe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41570', N'Zombie Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41571', N'Sand Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41572', N'Fingernail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41573', N'Scientist Lab Coat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41574', N'Gift Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41575', N'Medium Piece A', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41576', N'Medium Piece B', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41577', N'Medium Piece C', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41578', N'Nepenthes Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41579', N'Torn Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41580', N'Pagan Mage''s Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41581', N'Axe Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41582', N'100 Ton Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41583', N'Prison Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41584', N'Sand Golem''s Sand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41585', N'Unidentified Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41586', N'Unidentified Fruit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41587', N'Unidentified Tree Bark', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41588', N'Unidentified Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41589', N'Unidentified Bud', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41590', N'Unidentified Branch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41591', N'Unidentified Seed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41592', N'Unidentified Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41593', N'Fancy Flower Petals', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41594', N'Nepenthes Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41595', N'Growth Accelerator', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41596', N'Nepenthes Manure', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41597', N'Wood Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41598', N'Sand Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41599', N'Essential Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41600', N'Aquarium Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41601', N'Audrey', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41602', N'Adrian ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41603', N'Timothy ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41604', N'Audrey Dressed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41605', N'Adrian Dressed ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41606', N'Crossdressed Timothy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41607', N'Nepenthes with Leaves', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41608', N'Immature Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41609', N'Adult Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41610', N'Large Egg', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41611', N'Growth Steriods', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41612', N'Boiled Egg', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41613', N'Newborn Chick', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41614', N'Immature Chicken''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41615', N'Rooster''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41616', N'Diva Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41617', N'Zombie Baby Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41618', N'Zombie Child Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41619', N'Zombie Teen Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41620', N'Zombie Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41621', N'Zombie Nepenthes'' Urn', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41622', N'Nepenthes Manure', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41623', N'Minotauros Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41624', N'Massive Mole Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41625', N'Massive Mole Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41626', N'Giant Sandworm Eyeball ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41627', N'Colorful Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41628', N'Box Tape', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41629', N'Box with Legs', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41630', N'Box with Legs'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41631', N'Box Cat''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41632', N'Box Bird''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41633', N'Box Tank''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41634', N'Torn Research Documents', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41635', N'Clean Lab Coat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41636', N'Snapped Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41637', N'Very Rough Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41638', N'Red Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41639', N'Coarse Whiskers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41640', N'Dense Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41641', N'Fraction of Faded Gem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41642', N'Large Sword Girl Pet', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41643', N'Large Sword Girl Pet 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41644', N'Moonstone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41645', N'Emerald Gemstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41646', N'Amethyst Gemstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41647', N'Twisted Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41648', N'Heavy Bolts', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41649', N'Lubricant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41650', N'Metal Saw File', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41651', N'Garden Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41652', N'Purple Mazerock', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41653', N'Box of Time and Space', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41654', N'Mysterious Mazesand', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41655', N'Magic Orb', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41656', N'Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41657', N'Mysterious Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41658', N'Magic Mysterious Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41659', N'Unoa''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41660', N'Sesame Sauce', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41661', N'Pine Needles', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41662', N'Purple Sweet Potato Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41663', N'Sweet Pumpkin Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41664', N'Rice Flour', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41665', N'Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41666', N'Rice Flour Dough', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41667', N'Dragonfish Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41668', N'Wrinkled Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41669', N'Cracked Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41670', N'Stick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41671', N'Bent Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41672', N'Joker Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41673', N'Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41674', N'Gargoyle''s Wing', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41675', N'Chimera''s Tentacle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41676', N'Tough Feathers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41677', N'Soil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41678', N'Tombstone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41679', N'Soft Fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41680', N'Scrap of Soft Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41681', N'Scrap of Red Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41682', N'Baron''s Twilight Cloak', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41683', N'Fine Feather Fan', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41684', N'Tail Spear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41685', N'Loose Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41686', N'Ripped Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41687', N'Ripped Felt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41688', N'Magic Crystal Shard', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41689', N'Magical Gemstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41690', N'Doll Clothing Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41691', N'Doll Clothing Made by Gina', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41692', N'Chunk of Iron', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41693', N'Hard Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41694', N'Thick Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41695', N'Curtis Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41696', N'Curtis Crest', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41697', N'Joker Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41698', N'Duke Gerald''s Blood Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41699', N'Chimera''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41700', N'Chimera''s Venom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41701', N'Grave Keeper''s Lamp', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41702', N'Sandbag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41703', N'Experimental Blood Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41704', N'Powerless Gemstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41705', N'Needle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41706', N'Thick Thread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41707', N'Cracked Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41708', N'Scrap of Oily Red Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41709', N'Rabbit Ears', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41710', N'Raccoon Tail', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41711', N'Tiger Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41712', N'Tiger Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41713', N'Panda Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41714', N'Panda Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41715', N'Milk Cow Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41716', N'Milk Cow Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41717', N'Gem Sword', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41718', N'Spike Club', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41719', N'Pie Pumpkin', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41720', N'Cocoa Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41721', N'Crushed Pecans', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41722', N'Sweet Apple', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41723', N'Spooky Flour', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41724', N'Spooky Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41725', N'Spooky Dough', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41726', N'Undia''s Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41727', N'Depleted Magic Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41728', N'Cracked Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41729', N'Shining Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41730', N'Sealed Third Piece of Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41731', N'Haken''s Webbed Feet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41732', N'Haken''s Back Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41733', N'Haken''s Gill', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41734', N'Haken''s Eyeball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41735', N'Third Piece of Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41736', N'Tough Leather of Anubis', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41737', N'Lantern Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41738', N'Head Wig for Gustav', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41739', N'White Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41740', N'Black Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41741', N'Mirror Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41742', N'Spell Pouch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41743', N'Sturdy Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41744', N'Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41745', N'Piece of Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41746', N'Glass Bottle made from Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41747', N'Glass Bottle made from Enchanted Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41748', N'Medusa''s Blood in the Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41749', N'Tears of Purgatory in the Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41750', N'Thick Gloves', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41751', N'Blood of Fallen Wizard', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41752', N'Eyeball of Gargolye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41753', N'Blood of Sparkle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41754', N'Hard Tooth of Haken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41755', N'Gravekeeper''s Pile of Dust', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41756', N'Un-steady Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41757', N'Mysterious Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41758', N'Haken Sorcerer''s Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41759', N'Crisp Mane', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41760', N'Demon King''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41761', N'Wing of Bloog Serpent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41762', N'Claw of Gargolye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41763', N'Malleable Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41764', N'Homemade Pie for Unoa', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41765', N'Lump of Mud', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41766', N'Thick Sand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41767', N'Glass Marble', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41768', N'Poison''s Creepy Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41769', N'Brilliant Gem', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41770', N'Matured Dough', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41771', N'Freshly grind Flour', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41772', N'Warm Milk', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41773', N'Syrup', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41774', N'Chocolate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41775', N'Whipped Cream', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41776', N'Whipped Butter', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41777', N'Strawberry', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41778', N'Diopside Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41779', N'Chrysoberyl Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41780', N'Rhodonite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41781', N'Morganite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41782', N'Malachite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41783', N'Fluorite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41784', N'Calcite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2100', N'21')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41785', N'Blue Spinel Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2400', N'24')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41786', N'Moonstone Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2700', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41787', N'Jadeite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41788', N'Rusty Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41789', N'Diopside', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'3000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41790', N'Chrysoberyl', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'6000', N'6000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41791', N'Rhodonite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'9000', N'9000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41792', N'Morganite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'12000', N'12000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41793', N'Malachite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'15000', N'15000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41794', N'Fluorite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'18000', N'18000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41795', N'Calcite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'21000', N'21000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41796', N'Blue Spinel', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'24000', N'24000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41797', N'Moonstone', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'27000', N'27000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41798', N'Jadeite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'30000', N'30000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41799', N'Voucher of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41800', N'Blue Gem of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41801', N'Red Gem of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41802', N'Maple Syrup', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41803', N'Smooth Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41804', N'3rd Spine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41805', N'Lotus Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41806', N'Silvervine Bark', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41807', N'Bok Choy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41808', N'Bell Pepper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41809', N'Fresh Carrot', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41810', N'Sweet Pumpkin Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41811', N'Waterfall', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41812', N'Magic Marble', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41813', N'Raw Ruby', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41814', N'Raw Sapphire', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41815', N'Possession of Lord Curtis', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41816', N'Soft Hind Leg of Haken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41817', N'Unknown Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41818', N'Discarded Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41819', N'Thanatos''s Fourth Heart Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41820', N'Exhausted Ore Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41821', N'Clipped Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41822', N'Tombstone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41823', N'Repair Parts (Small)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41824', N'Repair Parts (Medium)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41825', N'Exhausted Magic Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41826', N'Haken Residue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41827', N'Reservoir Water Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41828', N'Damaged Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41829', N'Soldier''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41830', N'Damaged Soldier''s Helmet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41831', N'Gargoyle''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41832', N'Garuda''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41833', N'Garuda Mage''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41834', N'Soldier''s Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41835', N'Phantom Gem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41836', N'Security Deposit Loan Document', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41837', N'Rough Diamond', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41838', N'Pink Stone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41839', N'Sharpening Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41840', N'Forked Road Crystal Fragment', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41841', N'Garnet Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41842', N'Carnelian Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41843', N'Agate Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41844', N'Lapis Lazuli Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41845', N'Aquamarine Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41846', N'Inca Rose Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41847', N'Garnet', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'5000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41848', N'Carnelian', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41849', N'Agate', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'15000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41850', N'Lapis Lazuli', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41851', N'Aquamarine', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'25000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41852', N'Inca Rose', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'400000', N'30000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41853', N'Empty Bottle', N'3', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41854', N'Bottle of Oil', N'3', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50001', N'Silver Bar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50002', N'Gold Bar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50004', N'Silver Bijou', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50005', N'Bandage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50006', N'Leather Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50007', N'Cloth Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'2')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50008', N'Blue Bijou', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50009', N'Dyes', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50010', N'Firewood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50011', N'Log', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50012', N'Flask', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50013', N'Iron Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50014', N'Triangular Iron Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50015', N'Oil Pouch', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50016', N'Cube', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50017', N'Skull Soldier''s Red Eye', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50018', N'Perfume Bottle', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50019', N'Fishy Perfume', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50020', N'Fish Soldier''s Sword Piece', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50021', N'Beast Claw', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50022', N'Gunpowder', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50023', N'Wiseman''s Stone', N'3', N'0', N'0', N'24', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50025', N'Iron', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50026', N'Iron Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50027', N'Welding Rod', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50028', N'Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50029', N'Glue', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50030', N'High Quality Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50031', N'Pattern', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50033', N'Skeleton Soldier''s Eye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50034', N'Red Skeleton Soldier''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50035', N'Haken Trident', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50036', N'Butcher''s Metal Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50037', N'Butcher''s Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50038', N'Orb of Gluttony', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50039', N'Angolier''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50040', N'Angolier''s Pendulum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50041', N'Staff of Entrancement', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50042', N'Fabric Soaked in Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50043', N'Nomi Nomi''s Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50044', N'Rabbit Foot', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50046', N'Soul Reflector', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50047', N'Crushed Zirconium Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50048', N'White Paulowina Wood Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50049', N'Oriharcor Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50050', N'Mirror Piece of Other World', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50051', N'Talisman of Thoughts', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50052', N'Orb of Torture', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50053', N'Onyx of Blood', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50055', N'Faded Emblem of Loyalty', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50056', N'Royal Guard''s Necklace', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50057', N'Staff of Flame', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50058', N'Ifrit''s Fingernail', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50059', N'Staff of Ice', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50060', N'Blizzard Cloak', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50061', N'Angel''s Tear', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50062', N'Goggle Monster''s Spite', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50063', N'Black Angolier''s Feather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50064', N'Sky Hammer', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50065', N'Angry Tiara', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50066', N'Red Lion''s Mane', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50067', N'Studded Gloves', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50068', N'Cursed Horseshoe', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50069', N'Onyx of Ice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50070', N'Wine Sapper', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50071', N'Old Book', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50101', N'Glowing Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50102', N'Pulsating Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50103', N'Strangely Warm Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'15', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50104', N'Red Hook Full', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50105', N'Fish Paste Bait', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50106', N'Butcher''s Heart', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50200', N'The Eyes that Penetrate the Wine', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50201', N'Grape Juice', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50202', N'Real Dew', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50203', N'Bramble Wine', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'40', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50204', N'White Snake Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50205', N'830 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50206', N'829 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50207', N'828 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50208', N'827 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'90', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50209', N'826 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50210', N'825 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'180', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50211', N'824 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1080', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50212', N'823 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1200', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50213', N'822 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1440', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50214', N'821 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1800', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50215', N'820 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'2400', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50216', N'Ocean Blood', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'2400', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50217', N'Bloody Abyss', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50218', N'Chablis Tiger Blood Made in 1000BC', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'4800', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50219', N'Blue Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50220', N'Red Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50221', N'White Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50222', N'Black Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50223', N'Green Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50224', N'Blue Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50225', N'Red Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50226', N'White Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50227', N'Black Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50228', N'Green Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50300', N'Monster Language Translator', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50301', N'Red Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50302', N'Blue Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50303', N'Yellow Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50304', N'Green Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50305', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50306', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50307', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50315', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50316', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50317', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50325', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50326', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50327', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50335', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50336', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50337', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50345', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50346', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50347', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50355', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50356', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50357', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50365', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50366', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50367', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50375', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50376', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50377', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50385', N'Pristine Red Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50404', N'Pristine Blue Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50405', N'Pristine Yellow Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50424', N'Pristine Green Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50425', N'Colorless Socket Converter', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50426', N'Fishing Rod', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50427', N'Ancient Coin Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50428', N'Perm Solution', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50429', N'Hair Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50430', N'Dye Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50431', N'Conditioner', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50432', N'Fortune Coin', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50433', N'Green Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50434', N'Yellow Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50435', N'Blue Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50436', N'Red Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50437', N'Colorless Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50438', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50439', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50440', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50441', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50442', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50443', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50444', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50445', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50446', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50447', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50448', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50449', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50450', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50451', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50452', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50453', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50454', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50455', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50456', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50457', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50458', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50459', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50460', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50461', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50462', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50463', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50464', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50465', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50466', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50467', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50468', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50469', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50470', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50471', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50472', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50473', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50474', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50475', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50476', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50477', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50478', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50479', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50480', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50481', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50482', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50483', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50484', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50485', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50486', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50487', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50488', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50489', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50490', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50491', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50492', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50493', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50494', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50495', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50496', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50497', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50498', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50499', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50500', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50501', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50502', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50503', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50504', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50505', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50506', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50507', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50508', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50509', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50510', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50511', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50512', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50513', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50514', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50515', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50516', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50517', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50518', N'Cracked Grey Gem', N'2', N'0', N'0', N'29', N'2', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50991', N'Cracked Augment Pebble', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50992', N'Soft Augment Pebble', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50993', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50994', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51991', N'Cracked Augment Stone', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51992', N'Soft Augment Stone', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51993', N'Augment Stone', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51994', N'Hard Augment Stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52991', N'Cracked Augment Crystal', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52992', N'Soft Augment Crystal', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52993', N'Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52994', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56001', N'Gloves'' Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56002', N'Armored Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56003', N'Boozatron''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56004', N'Hammer Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56005', N'Cursed Cataphract''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56006', N'Giant Mole''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56007', N'Dewey Decimator''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56008', N'Cataphract''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56009', N'Crimson Gloves'' Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56010', N'Minotauros Lord''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56011', N'Sinful Seraph''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56012', N'Massive Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56013', N'Haken Platina''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56014', N'Viper''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56015', N'Stone Golem''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56016', N'Massive Mole''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56017', N'Goliath Gorilla''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56018', N'Giant Rafflesia''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56019', N'Cyborg Gorilla''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56020', N'Sand Golem''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56021', N'Giant Sandworm''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56022', N'Spider Lady''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56023', N'Baron''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56024', N'Joker''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56025', N'Chimera''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56026', N'Conjugo''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56027', N'Dire Knight''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56028', N'Sparkle''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56029', N'Demon King''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56030', N'Mad Latiel''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56031', N'Gagarth''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56032', N'Aurosiac''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56033', N'Silent Castiel''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57001', N'Glove''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57002', N'Armored Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57003', N'Boozatron''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57004', N'Hammer Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57005', N'Cursed Cataphract''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57006', N'Giant Mole''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57007', N'Dewey Decimator''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57008', N'Cataphract''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57009', N'Crimson Gloves'' Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57010', N'Minotauros Lord''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57011', N'Sinful Seraph''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57012', N'Massive Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57013', N'Haken Platina''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57014', N'Viper''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57015', N'Stone Golem''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57016', N'Massive Mole''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57017', N'Goliath Gorilla''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57018', N'Giant Rafflesia''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57019', N'Cyborg Gorilla''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57020', N'Sand Golem''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57021', N'Giant Sandworm''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57022', N'Spider Lady''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57023', N'Baron''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57024', N'Joker''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57025', N'Chimera''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57026', N'Conjugo''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57027', N'Dire Knight''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57028', N'Sparkle''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57029', N'Demon King''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57030', N'Mad Latiel''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57031', N'Gagarth''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57032', N'Aurosiac''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57033', N'Silent Castiel''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59001', N'Clovis of Illusion', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59002', N'Clovis of Inferno', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59003', N'Clovis of Punishment', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59004', N'Clovis of Taboo', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59005', N'Clovis of Fissure', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59020', N'Clovis of the Altar', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'80000', N'8000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59021', N'Clovis of the Valley', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59022', N'Clovis of the Mist', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120000', N'12000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59023', N'Clovis of the Incinerator', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'80000', N'8000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59024', N'Clovis of the Ranch', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59101', N'Single Entrance Ticket to the Toy Tower', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'50000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60001', N'Buckthorn Leaf Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60002', N'Clown Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60003', N'Tender Lean Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60004', N'Leftover Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60005', N'Banana', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60006', N'Small Potato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60007', N'Peony Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60008', N'Maple Sap', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60009', N'Cheap Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60010', N'Wrinkle Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60011', N'Maple Syrup', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60012', N'Blue Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'420', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60013', N'Sugar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60014', N'Rum', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60015', N'Red Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60016', N'Peony', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60017', N'Fisherman Herb', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60018', N'Ancient Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60019', N'Fruit Extract', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60020', N'Edible Alcohol', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60021', N'Brewing Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60022', N'Distilled Water', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60023', N'Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60024', N'Yeast Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60025', N'Smoked Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60026', N'Smoked Turkey', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60027', N'Scale Bug Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60028', N'Big Scale Bug Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60029', N'Rat Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60030', N'Field Mouse Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60031', N'Bay Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60032', N'Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60033', N'Veggie Soup', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60034', N'Black Pepper', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60035', N'Natural Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60036', N'Whole Wheat Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60037', N'Fine Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60038', N'Enzyme', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60039', N'Natural Enzyme', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60040', N'Pickled Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60041', N'Black Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60042', N'Fig', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60043', N'Salted Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60044', N'Brandy', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60045', N'Tarragon', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60046', N'Salted Fish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60047', N'Scale Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60048', N'Black Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60049', N'Starch Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60050', N'High Quality Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60051', N'Sweetener for Brewing', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60052', N'Herb Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60053', N'Fermented Grape Juice', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60054', N'High Quality Starch Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60055', N'Rock Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60056', N'Dried Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'2')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60057', N'Tender Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60058', N'Lean Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60059', N'Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60060', N'Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60061', N'Garlic Sauce', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60062', N'Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60063', N'Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60064', N'Parsley Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60065', N'Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60066', N'Fresh Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60067', N'Butter Slices', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60068', N'Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60069', N'Cheese Slices', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60070', N'Fresh Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60071', N'Fresh Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60072', N'Fancy Old Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60073', N'Canned Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60074', N'Whipped Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60075', N'Organic Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60076', N'Aged Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60077', N'Dried Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60078', N'Dried Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60079', N'Aromatic Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60080', N'Cream Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60081', N'Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60082', N'Whole Potato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60083', N'Seafood Sauce', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60084', N'Salted Bacon', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60085', N'Curry Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60086', N'Whole Black Pepper', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60087', N'Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60088', N'Condensed Milk', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60089', N'Broccoli', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60090', N'White Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60091', N'Chili Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60092', N'Mysterious food additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60093', N'Pickled Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60094', N'Smooth Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60095', N'Spicy Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60096', N'Smooth Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60097', N'Flavored Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60098', N'Flavored Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60099', N'17-Year-Old Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60100', N'Sweet Pumpkin', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60101', N'Rosemary', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60102', N'Chicken Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60103', N'Ground Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60104', N'Subtle Cooking Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60105', N'Crushed Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60106', N'Mature Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60107', N'Crushed Garlic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60108', N'Mature Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60109', N'Damp Basil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60110', N'Fresh Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60111', N'Tepid Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60112', N'Sausage Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60113', N'Bramunez Cream', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60114', N'Slice Tomato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60115', N'Mutton Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60116', N'Mysterious Food Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001', N'Worst Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002', N'Poor Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'264', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003', N'Decent Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'561', N'93')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004', N'Great Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1168', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005', N'Best Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2409', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016', N'Worst Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017', N'Poor Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018', N'Decent Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019', N'Great Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1459', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020', N'Best Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'3010', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022', N'Shiny Cobalt', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023', N'Shiny Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'3853', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024', N'Shiny Suri Fleece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5213', N'860')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025', N'Shiny Ertel', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026', N'Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027', N'Decent Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028', N'Great Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029', N'Best Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030', N'Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031', N'Decent Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032', N'Great Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'800', N'88')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033', N'Best Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034', N'Poor Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035', N'Moon Fragment', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036', N'Moon Gemstone ', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037', N'Moon Crystal ', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61140', N'Decent Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61141', N'Great Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61142', N'Poor Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143', N'Decent Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61144', N'Great Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001', N'Worst Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'66', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002', N'Poor Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003', N'Decent Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'297', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004', N'Great Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'640', N'106')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005', N'Best Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1353', N'225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011', N'Worst Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'86', N'14')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012', N'Poor Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013', N'Decent Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014', N'Great Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'799', N'133')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015', N'Best Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1690', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022', N'Shiny Twine Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'506', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023', N'Shiny Silk Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1926', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024', N'Shiny Muslin Fabric ', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2093', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025', N'Shiny Herringbone Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026', N'Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027', N'Decent Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028', N'Great Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029', N'Best Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030', N'Poor Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031', N'Decent Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032', N'Great Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033', N'Best Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034', N'Poor Fabric Stiffener', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035', N'Decent Liquid Starch', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036', N'Great Fabric Stiffener', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001', N'Worst Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'66', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002', N'Poor Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003', N'Decent Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'297', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004', N'Great Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'640', N'106')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005', N'Best Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1353', N'225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011', N'Worst Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'86', N'14')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012', N'Poor Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013', N'Decent Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014', N'Great Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'799', N'133')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015', N'Best Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1690', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022', N'Shiny Hide Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'506', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023', N'Shiny Goat Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1926', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024', N'Shiny Swede Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2606', N'430')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025', N'Shiny Velour Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026', N'Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027', N'Decent Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028', N'Great Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029', N'Best Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030', N'Coarse Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031', N'Decent Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032', N'Great Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033', N'Best Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034', N'Poor Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035', N'Fire Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036', N'Fire Element Stone', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037', N'Fire Crystal', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054', N'Decent Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055', N'Great Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026', N'Normal Grade Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027', N'Decent Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028', N'Great Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029', N'Best Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030', N'Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031', N'Decent Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032', N'Great Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033', N'Best Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'20000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034', N'Chain Strengthener ', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035', N'Wind Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036', N'Wind Gemstone', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2200', N'242')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037', N'Wind Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5500', N'605')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64054', N'Decent Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64055', N'Best Chain Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65026', N'Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65027', N'Decent Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65028', N'Great Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65029', N'Quality Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65030', N'Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65031', N'Decent Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65032', N'Great Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65033', N'Best Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'20000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65034', N'Old Plate Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65035', N'Earth Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65036', N'Earth Gemstone', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2200', N'242')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65037', N'Earth Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5500', N'605')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65054', N'Decent Plate Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65055', N'Great Chain Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66001', N'Zircon Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66002', N'Onyx Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66003', N'Topaz Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66004', N'Amethyst Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66005', N'Garnet Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66006', N'Zircon Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66007', N'Onyx Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66008', N'Topaz Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66009', N'Amethyst Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66010', N'Garnet Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66011', N'Zircon', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66012', N'Onyx', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66013', N'Topaz', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66014', N'Amethyst', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66015', N'Garnet', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66016', N'Splendid Zircon', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66017', N'Splendid Onyx', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66018', N'Splendid Topaz', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66019', N'Splendid Amethyst', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66020', N'Splendid Garnet', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66021', N'Shiny Zircon', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66022', N'Shiny Onyx', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66023', N'Shiny Topaz', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66024', N'Shiny Amethyst', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66025', N'Shiny Garnet ', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66026', N'Coarse Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66027', N'Mid Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66028', N'Great Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66029', N'Quality Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66030', N'Coarse Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66031', N'Decent Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66032', N'Great Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66033', N'Best Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66034', N'Jewel Hardener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66035', N'Light Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66036', N'Light Ore', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66037', N'Light Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66038', N'Worst Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66039', N'Poor Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'450', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66040', N'Decent Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'99')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66041', N'Great Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66042', N'Best Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3600', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66043', N'Mystical Fragment', N'3', N'0', N'0', N'36', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'3600', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67001', N'Icestone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67002', N'Flamestone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67003', N'Shadowstone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67004', N'Luminstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67005', N'Chipped Mystical Title Fragment', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67006', N'Chipped Fatal Blow Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67007', N'Chipped Fire Damage Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67008', N'Chipped Wave Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67009', N'Chipped Wind Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67010', N'Chipped Earth Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67011', N'Chipped Darkness Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67012', N'Chipped Light Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67013', N'Chipped Lightening Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67014', N'Chipped Poisonous Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68001', N'Unbreakable Bone Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68002', N'Tree Spirit''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68003', N'Incomplete Ancient Spell', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68004', N'Specter''s Spell', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68011', N'Mystical Bone Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68012', N'Vindictive Spirit Piece of Catacomb', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68013', N'Gun''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68014', N'Bullet''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68015', N'Unknown Voucher Lv. 1', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68016', N'Unknown Voucher Lv. 2', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68017', N'Unknown Voucher Lv. 3', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68018', N'Unknown Voucher Lv. 4', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68019', N'Unknown Voucher Lv. 5', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68020', N'Unknown Voucher Lv. 6', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68021', N'Unknown Voucher Lv. 7', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68022', N'Unknown Voucher Lv. 8', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68023', N'Unknown Voucher Lv. 9', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68024', N'Unknown Voucher Lv. 10', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68115', N'Unknown Box Lv. 1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68116', N'Unknown Box Lv. 2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68117', N'Unknown Box Lv. 3', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68118', N'Unknown Box Lv. 4', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68119', N'Unknown Box Lv. 5', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68120', N'Unknown Box Lv. 6', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68121', N'Unknown Box Lv. 7', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68122', N'Unknown Box Lv. 8', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68123', N'Unknown Box Lv. 9', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68124', N'Unknown Box Lv. 10', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68125', N'Gem of the Barrier', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68126', N'Mysterious Gem', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68127', N'Unknown Gem', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70001', N'Expand Warehouse by 4 Units', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002', N'Expand Warehouse by 4 Units', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003', N'Street Vendor Permit (1week)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70004', N'Street Vendor Permit (2weeks)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70005', N'Street Vendor Permit (4weeks)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70006', N'100 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70007', N'200 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70008', N'400 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70012', N'Aqua Vitae of Resurrection', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70021', N'Change Guild Icon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78158', N'Costume Supply Item : Shoes', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78159', N'Costume Supply Item : Shirt', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78160', N'Costume Supply Item : Glove', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78161', N'Costume Supply Item : Tights', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78162', N'Costume Supply Item : Coat', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78163', N'Costume Supply Item : Pants', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78168', N'Costume-issue Item: Cat Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78169', N'Costume-issue Item: Fly Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78170', N'Costume-issue Item: Pig Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78171', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78172', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78173', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78174', N'Insect Costume Design Issue Item', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78175', N'Title Issue Item', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78176', N'Growth Hormone Releaser Ingredient Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80001', N'Condition 1', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80002', N'Condition 2', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80003', N'Condition 3', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80004', N'Condition 4', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80005', N'Condition 5', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80006', N'Condition 6', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80007', N'Condition 7', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80008', N'Condition 8', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80009', N'Condition 9', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80010', N'Condition 10', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80011', N'10 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80012', N'20 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80013', N'30 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80014', N'50 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80015', N'80 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80016', N'100 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80017', N'130 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80018', N'150 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80019', N'180 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80020', N'200 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90001', N'Other World Tutorial', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90002', N'Cellar Sewer Dead Man''s Chest', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90003', N'90003', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90004', N'90004', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90005', N'90005', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90006', N'90006', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90010', N'90010', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90011', N'The tutorial will be over after you meet Vincent', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90012', N'', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90013', N'The last cypher scene with Amelia on the 5th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014', N'Georg''s Anger Management Class 5', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90021', N'The Last Event 1 on the 4th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90022', N'The Last Event 2 on the 4th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90023', N'The scene of Vincent rescuing Gerald', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024', N'Arboretum Boss Event', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025', N'Scene were Ryan is caught chasing Vincent', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90031', N'Scene where Mr. Heo meets Pierre ', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90032', N'Betty runs out from the bar', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90033', N'The scene where Gorgon encounters Death', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034', N'The scene where Gerald makes a run to the Grave', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035', N'The scene where Death and Gerald go off to the Castle together', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90041', N'90041', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90042', N'90042', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90043', N'90043', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044', N'90044', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045', N'10th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046', N'50th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90047', N'100th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90048', N'200th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90049', N'300th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90050', N'400th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90051', N'500th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90052', N'600th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90053', N'700th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054', N'800th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055', N'900th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056', N'1000th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90057', N'Veranda First room blocked conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90058', N'Veranda First room open conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90059', N'Veranda First room blocked conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90060', N'Veranda Second room open conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90061', N'D-4 END', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90110', N'Seed 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90120', N'Seed 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90130', N'Seed 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90210', N'Baby 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90220', N'Baby 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90230', N'Baby 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90310', N'Elementary Student 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90320', N'Elementary Student 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90330', N'Elementary Student 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90410', N'Teenager 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90420', N'Teenager 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90430', N'Teenager 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90511', N'Health 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90512', N'Personality 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90513', N'Force 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90514', N'Charm 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90515', N'Intelligence 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90521', N'Health 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90522', N'Personality 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90523', N'Force 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90524', N'Charm 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90525', N'Intelligence 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90531', N'Health 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90532', N'Personality 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90533', N'Force 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90534', N'Charm 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90535', N'Intelligence 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90601', N'Witch 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90602', N'Witch 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90603', N'Witch 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100001', N'Instant Item 01', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100002', N'Instant Item 02', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100003', N'Instant Item 03', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100004', N'Instant Item 04', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100005', N'Instant Item 05', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100006', N'Instant Item 06', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'110000', N'Other World Entry Card', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120000', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120001', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120002', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120003', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120004', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120005', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120006', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120007', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120008', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120009', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120010', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120011', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120012', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120013', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120015', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120016', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120017', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120018', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120019', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120020', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120021', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120022', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120023', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120025', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120026', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120027', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120028', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120029', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120030', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120031', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120032', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120033', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120035', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120036', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120037', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120038', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120039', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120040', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120041', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120042', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120043', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120045', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120046', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120047', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120048', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120049', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120050', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120051', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120052', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120053', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120054', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120055', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120056', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120057', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120058', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120059', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120060', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120061', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120062', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120063', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120064', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120065', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120066', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120067', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120068', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120069', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120070', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120071', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120072', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120073', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120074', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120075', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120076', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120077', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120078', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120079', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120080', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120081', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120082', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120083', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120084', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120085', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120086', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120087', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120088', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120089', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120090', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120091', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120092', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120093', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120094', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120095', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120096', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120097', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120098', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120099', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120100', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120101', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120102', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120103', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120104', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120105', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120106', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120107', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120108', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120109', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120110', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120111', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120112', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120113', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120114', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120115', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120116', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120117', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120118', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120119', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120120', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120121', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120122', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120123', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120124', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120125', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120126', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120127', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120128', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120129', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120130', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120131', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120132', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120133', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120134', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120135', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120136', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120137', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120138', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120139', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120140', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120141', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120142', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120143', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120144', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120145', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120146', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120147', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120148', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120149', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120150', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120151', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120152', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120153', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120154', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120155', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120156', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120157', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120158', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120159', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120160', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120161', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120162', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120163', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120164', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120165', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120166', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120167', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120168', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120169', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120170', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120171', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120172', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120173', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120174', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120175', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120176', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120177', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120178', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120179', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120180', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120181', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120182', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120183', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120184', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120185', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120186', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120187', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120188', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120189', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120190', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120191', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120192', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120193', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120194', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120195', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120196', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120197', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120198', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120199', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120200', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120201', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120202', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120203', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120204', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120205', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120206', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120207', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120208', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120209', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120210', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120211', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120212', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120213', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120214', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120215', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120216', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120217', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120218', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120219', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120220', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120221', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120222', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120223', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120224', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120225', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120226', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120227', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120228', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120229', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120230', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120231', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120232', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120233', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120234', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120235', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120236', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120237', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120238', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120239', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120240', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120241', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120242', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120243', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120244', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120999', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'121901', N'Chaos Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'121902', N'Chaos Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'130000', N'Coin of Luck', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'10000001', N'Chardonnay Wine', N'2', N'0', N'0', N'13', N'1', N'6', N'0', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010084', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010085', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010086', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010537', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010539', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020084', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020085', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020086', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020537', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020539', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030084', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030085', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030086', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030537', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030539', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000001', N'Bramunez Militia Member', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000002', N'Skeleton Slaughterer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000003', N'Master of Fighting!', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000004', N'Daddy Chicken', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000005', N'Mommy Chicken', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000006', N'Wine Barrel Destroyer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000007', N'Contractor of the Beginning', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000008', N'Honorary Citizen', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000009', N'Curtis Killer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000010', N'Power of Patience', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000011', N'Delete Normal Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000012', N'Delete Special Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000013', N'Maintain Normal Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000014', N'Maintain Special Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000015', N'Title only for GM', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000016', N'Who''s Your Daddy?', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000017', N'Mother to Earth', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000018', N'Beach Bum', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000019', N'Title: 10th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000020', N'Title: 50th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000021', N'Title: 100th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000022', N'Title: 200th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000023', N'Title: 300th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000024', N'Title: 400th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000025', N'Title: 500th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000026', N'Title: 600th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000027', N'Title: 700th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000028', N'Title: 800th Floor Master', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000029', N'Title: 900th Floor Legend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000030', N'Title: 1000th Floor God', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000031', N'Scroll: Flame Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000032', N'Scroll: Ice Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000033', N'HP Up +10 of Shrine of Eternity', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000034', N'MP Up +10 of Shrine of Eternity', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000035', N'Scroll: Warrior''s Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000036', N'Scroll: Sorcerer''s Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000037', N'Title : Know-it-all', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000038', N'PvP AP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000039', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000040', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000041', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000042', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000043', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000044', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000045', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000046', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000047', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000048', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000049', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000050', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000051', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000052', N'Monster Riddle Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000053', N'Mini Gloves Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000054', N'Mini Butcher Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000055', N'Mini Wolfman Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000056', N'Mini Giant Mole Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000057', N'Mini Hammer Butcher Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000058', N'Mini Bone Collector Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000059', N'Mini Gorilla Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000060', N'Mini Haken Archer Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000061', N'Mini Guardian Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000062', N'Mini Templar Guardian Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000063', N'Mini Boozatron Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000064', N'Mini Red Gorilla Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000065', N'Mini Mole Bug Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000066', N'Mini Bone Dragon Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000067', N'Friend with Curtis', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000068', N'Shadow Fabric Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000069', N'Shadow Fabric Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000070', N'Shadow Fabric Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000071', N'Shadow Fabric Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000072', N'Shadow Fabric Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000073', N'Shadow Fabric Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000074', N'Shadow Fabric Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000075', N'Shadow Leather Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000076', N'Shadow Leather Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000077', N'Shadow Leather Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000078', N'Shadow Leather Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000079', N'Shadow Leather Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000080', N'Shadow Leather Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000081', N'Shadow Leather Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000082', N'Shadow Chain Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000083', N'Shadow Chain Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000084', N'Shadow Chain Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000085', N'Shadow Chain Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000086', N'Shadow Chain Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000087', N'Shadow Chain Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000088', N'Shadow Chain Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000089', N'Shadow Plate Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000090', N'Shadow Plate Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000091', N'Shadow Plate Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000092', N'Shadow Plate Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000093', N'Shadow Plate Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000094', N'Shadow Plate Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000095', N'Shadow Plate Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000096', N'Shadow Armor Package (Lv.20)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000097', N'Shadow Armor Package (Lv.25)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000098', N'Shadow Armor Package (Lv.30)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000099', N'Shadow Armor Package (Lv.35)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000100', N'Shadow Armor Package (Lv.40)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000101', N'Shadow Armor Package (Lv.45)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000102', N'Shadow Armor Package (Lv.50)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000103', N'Recovery Potion of Eternity', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000104', N'Mana Potion of Eternity', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000105', N'Title: Partyholic', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000106', N'Title: Play With Me', N'2', N'0', N'0', N'20', N'5', N'30', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000107', N'Title: We Are One', N'2', N'0', N'0', N'20', N'5', N'40', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000108', N'Title: Carpe Diem', N'2', N'0', N'0', N'20', N'5', N'45', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000109', N'Title: Hard-Out', N'2', N'0', N'0', N'20', N'5', N'50', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000110', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000111', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000112', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000113', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000114', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000115', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000116', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000117', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000118', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000119', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000120', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000121', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000122', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000123', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000124', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000125', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000126', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000127', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000128', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000129', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000130', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000131', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000132', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000133', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000134', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000135', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000136', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000137', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000138', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000139', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000140', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000141', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000142', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000143', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000144', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000145', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000146', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000147', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000148', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000149', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000150', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000151', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000152', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000153', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000154', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000155', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000156', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000157', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000158', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000159', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000160', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000161', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000162', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000163', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000164', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000165', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000166', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000167', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000168', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000169', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000170', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000171', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000172', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000173', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000174', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000175', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000176', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000177', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000178', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000179', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000180', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000181', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000182', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000183', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000184', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000185', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000186', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000187', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000188', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000189', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000190', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000191', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000192', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000193', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000194', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000195', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000196', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000197', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000198', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000199', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000200', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000201', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000202', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000203', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000204', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000205', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000206', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000207', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000208', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000209', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000210', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000211', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000212', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000213', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000214', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000215', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000216', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000217', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000218', N'Title-giving item :Pitapat', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000219', N'Title-giving item :Joyful cheer', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000220', N'Title-giving item :Birthday bless', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000221', N'Title-giving item :Romantic song', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000222', N'Title-giving item :Sad mind', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000223', N'Title-giving item :I want to be alone', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000224', N'Title-giving item :Darn', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000225', N'Title-giving item :It''s annoying', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000226', N'Title-giving item :Running while sleeping', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000227', N'Title-giving item :Busy as a bee', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000228', N'Title-giving item :Calm weekend', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000229', N'Title-giving item :So so', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002001', N'Trick or Treat (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002002', N'Trick or Treat (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002003', N'Trick or Treat (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002004', N'Trick or Treat (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002005', N'Trick or Treat (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002006', N'Trick or Treat (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002007', N'Trick or Treat (1 Year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002011', N'Title : Jingle Bell Rocker (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002012', N'Title : Jingle Bell Rocker (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002013', N'Title : Jingle Bell Rocker (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002014', N'Title : Jingle Bell Rocker (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002015', N'Title : Jingle Bell Rocker (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002016', N'Title : Jingle Bell Rocker (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002017', N'Title : Jingle Bell Rocker (1 Year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002018', N'Title : Keyboard Warrior (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002019', N'Title : Keyboard Warrior (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002020', N'Title : Keyboard Warrior (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002021', N'Title : Keyboard Warrior (15 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002022', N'Title : Keyboard Warrior (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002023', N'Title : Keyboard Warrior (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002024', N'Title : Keyboard Warrior (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002025', N'Title : Greatly Joyful (1 day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002026', N'Title : Joy (3 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002027', N'Title : Single as usual (7 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002028', N'Title : Status Quo (30 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002029', N'Title : Winfall (60 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002030', N'Title : Luck (90 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002031', N'Title : Excellent Luck (1 year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002032', N'Seed of Life', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002033', N'Gem Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002034', N'Potion Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002035', N'Mithril Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002036', N'Mineral Water', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002037', N'Gem Seed''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002038', N'Potion Seed''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002039', N'Summon Pet : Charles', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002040', N'Extracted Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002041', N'Extracted Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002042', N'Extracted Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002043', N'Extracted Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002044', N'Extracted Grey Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002045', N'Wrinkled Seed of Life', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002046', N'Wrinkled Gem Seed', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002047', N'Wrinkled Seed of Potion', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002048', N'Wrinkled Seed of Mithril', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003000', N'Great Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003001', N'Seed Lv.1', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003002', N'Seed Lv.2', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003003', N'Seed Lv.3', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003004', N'Seed Lv.4', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003005', N'Seed Lv.5', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003006', N'Seed Lv.6', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003007', N'Seed Lv.7', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003008', N'Seed Lv.8', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003009', N'Seed Lv.9', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003051', N'Mineral Water Lv.1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003052', N'Mineral Water Lv.2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003053', N'Mineral Water Lv.3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003054', N'Mineral Water Lv.4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003055', N'Mineral Water Lv.5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003056', N'Mineral Water Lv.6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003057', N'Mineral Water Lv.7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003058', N'Mineral Water Lv.8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003059', N'Mineral Water Lv.9', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003101', N'Upgrade Cube Lv.1', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003102', N'Upgrade Cube Lv.2', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003103', N'Upgrade Cube Lv.3', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003104', N'Upgrade Cube Lv.4', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003105', N'Upgrade Cube Lv.5', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003106', N'Upgrade Cube Lv.6', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003107', N'Upgrade Cube Lv.7', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003108', N'Upgrade Cube Lv.8', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003109', N'Upgrade Cube Lv.9', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003201', N'Great Potion Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003202', N'Great Potion Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003211', N'Great Potion Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003212', N'Great Potion Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003221', N'Great Potion Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003222', N'Great Potion Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003231', N'Great Potion Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003232', N'Great Potion Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003301', N'Great Scroll Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003302', N'Great Scroll Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003311', N'Great Scroll Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003312', N'Great Scroll Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003321', N'Great Scroll Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003322', N'Great Scroll Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003331', N'Great Scroll Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003332', N'Great Scroll Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003401', N'Great Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003402', N'Great Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003411', N'Great Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003412', N'Great Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003421', N'Great Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003422', N'Great Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003431', N'Great Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003432', N'Great Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000001', N'Golden Seal Scout Team', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000002', N'PvP Guardian Knight', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000003', N'Specialist ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000004', N'Cool as Ice', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000005', N'Smokin'' Hot', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000006', N'Hardcore', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000007', N'Awesome', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000008', N'Mad Skills', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000009', N'Like a Boss', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000000', N'Worst Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000001', N'Poor Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'5', N'100', N'0', N'0', N'0', N'1', N'75', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000002', N'Mid-grade Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'10', N'100', N'0', N'0', N'0', N'1', N'180', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000003', N'Great Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'15', N'100', N'0', N'0', N'0', N'1', N'330', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000004', N'Best Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'20', N'100', N'0', N'0', N'0', N'1', N'500', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000005', N'Poor Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'25', N'100', N'0', N'0', N'0', N'1', N'700', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000006', N'Mid-Grade Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'30', N'100', N'0', N'0', N'0', N'1', N'1000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000007', N'Great Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'35', N'100', N'0', N'0', N'0', N'1', N'1300', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000008', N'Best Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'40', N'100', N'0', N'0', N'0', N'1', N'1600', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000000', N'Epic Ether of Change', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000001', N'Unique Ether of Change', N'2', N'0', N'0', N'16', N'5', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000002', N'Rare Ether of Change', N'2', N'0', N'0', N'16', N'4', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000003', N'Magic Ether of Change', N'2', N'0', N'0', N'16', N'2', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000004', N'Normal Ether of Change', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000005', N'Frantz Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000006', N'Frantz Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000007', N'Frantz Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000008', N'Frantz Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000009', N'Frantz Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000010', N'Frantz Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000011', N'Frantz Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000012', N'Angela Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000013', N'Angela Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000014', N'Angela Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000015', N'Angela Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000016', N'Angela Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000017', N'Angela Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000018', N'Angela Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000019', N'Tude Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000020', N'Tude Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000021', N'Tude Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000022', N'Tude Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000023', N'Tude Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000024', N'Tude Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000025', N'Tude Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000026', N'Gold Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000027', N'Silver Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000028', N'Bronze Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000029', N'Effect Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000030', N'Item Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000031', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000032', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000033', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000034', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000035', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000036', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000037', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000038', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000039', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000040', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000041', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000042', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000043', N'Powerful HP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000044', N'Powerful MP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000045', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000046', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000047', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000048', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000049', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000050', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000051', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000052', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000053', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000054', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000055', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000056', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000057', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000058', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000059', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000060', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000061', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000062', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000063', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000064', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000065', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000066', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000067', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000068', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000069', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000070', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000071', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000072', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000073', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000074', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000075', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000076', N'World Megaphone', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000077', N'Reset Skill Points', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000078', N'Reset PvP Score', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000079', N'Save 100 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000080', N'Portable Warehouse', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000081', N'Expand Personal Warehouse', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000082', N'Resurrection Scroll x 10', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000083', N'Save 100 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000084', N'Full-Strength Adhesive ', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000085', N'Level Up Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000086', N'Gold Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000087', N'Master Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000088', N'Save 300 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000089', N'Save 300 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000090', N'Save 500 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000091', N'Save 500 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000092', N'Small Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000093', N'Medium Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000094', N'Large Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000095', N'Pro Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000096', N'Gold Package [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000097', N'Master Package [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000098', N'Express Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000099', N'Gold Package [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000100', N'Master Package [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000101', N'Colorful Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000102', N'Powerful HP Recovery Potion [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000103', N'Powerful HP Recovery Potion [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000104', N'Full Equipment Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000105', N'Equipment Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000106', N'Frantz Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000107', N'Frantz Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000108', N'Frantz Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000109', N'Frantz Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000110', N'Frantz Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000111', N'Frantz Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000112', N'Frantz Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000113', N'Angela Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000114', N'Angela Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000115', N'Angela Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000116', N'Angela Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000117', N'Angela Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000118', N'Angela Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000119', N'Angela Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000120', N'Tude Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000121', N'Tude Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000122', N'Tude Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000123', N'Tude Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000124', N'Tude Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000125', N'Tude Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000126', N'Tude Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000127', N'Green Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000128', N'Yellow Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000129', N'Blue Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000130', N'Red Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000131', N'Frantz Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000132', N'Frantz Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000133', N'Frantz Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000134', N'Frantz Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000135', N'Frantz Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000136', N'Frantz Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000137', N'Frantz Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000138', N'Angela Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000139', N'Angela Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000140', N'Angela Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000141', N'Angela Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000142', N'Angela Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000143', N'Angela Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000144', N'Angela Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000145', N'Tude Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000146', N'Tude Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000147', N'Tude Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000148', N'Tude Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000149', N'Tude Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000150', N'Tude Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000151', N'Tude Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000152', N'World Megaphone [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000195', N'Resurrection Scroll x 10 [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000196', N'Save 100 Stamina [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000197', N'Save 100 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000198', N'Colorful Gem Box [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000199', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000200', N'Reset Skill Points [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000201', N'Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000202', N'Weapon Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000203', N'+5 Weapon Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000204', N'Powerful AP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000205', N'Elite Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000206', N'Poison''s Secret Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000207', N'+10 Weapon Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000208', N'Gem Socket Punch', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000209', N'Buff Scroll 1', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000210', N'Buff Scroll 2', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000211', N'Buff Scroll 3', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000212', N'Box Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000213', N'Summer Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000214', N'Summer Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000215', N'Summer Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000216', N'Summer Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000217', N'Golden Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000218', N'Golden Pattern Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000219', N'Alchemist''s Jar', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000220', N'Magic Chest of Change', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000221', N'Random Costume Pack', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000222', N'+5 Armor Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000223', N'+10 Armor Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000224', N'Renaming Contract', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000225', N'Golden Hearts', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000226', N'Random Frantz Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000227', N'Random Angela Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000228', N'Random Tude Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000229', N'Random Natasha Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000230', N'All Character Costume Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000231', N'Costume Random Box Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000232', N'Costume Random Box Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000233', N'Costume Random Box Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000234', N'Costume Random Box Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000235', N'Costume Random Box Package [All Character]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000236', N'White Party Item Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000237', N'White Star Pattern Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000238', N'White Wanderer Item [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000239', N'White Feather Item Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000240', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000241', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000242', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000243', N'Create Natasha Avatar', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000244', N'White Party Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000245', N'White Star Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000246', N'White Wanderer Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000247', N'White Feather Item Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000248', N'Lucky Alchemist''s Jar', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000249', N'Thanksgiving Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000250', N'Thanksgiving Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000251', N'Thanksgiving Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000252', N'Thanksgiving Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000253', N'Avatar Costume Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000254', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000255', N'Avatar Special Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000256', N'Sky Blue Bird Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000257', N'Title : Rising Star!', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000259', N'Create Avatar: Leila Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000260', N'Angela Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000261', N'Tude Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000262', N'Natasha Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000263', N'Jack O''Lantern', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000264', N'Halloween Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000265', N'Halloween Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000266', N'Halloween Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000267', N'Halloween Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000268', N'Halloween Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000269', N'Avatar Special Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000270', N'Avatar Costume Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000271', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000272', N'Title: Heir to the Bloodwind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000273', N'Black Queen Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000274', N'Pet Recharger', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000275', N'Pet Renaming Contract', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000276', N'Summon Twin Pet', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000277', N'Costume Chest of Change', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000278', N'Pet: Momo', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000279', N'Pet Summon : Fighter', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000280', N'Summon Pet: Catty', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000281', N'Summon Pet: Pepe', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000282', N'Violent Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000283', N'Pink Fur Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000284', N'Black Leather Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000285', N'White Military Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000286', N'Black Flame Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000287', N'White Military Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000288', N'Violent Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000289', N'Pink Fur Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000290', N'Black Leather Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000291', N'White Military Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000292', N'Black Flame Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000293', N'White Military Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000294', N'Avatar Special Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000295', N'Avatar Costume Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000296', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000297', N'Title : Deal with the Devil', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000298', N'Purple Winter Costume Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000299', N'Holiday Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000300', N'Holiday Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000301', N'Holiday Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000302', N'Holiday Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000303', N'Holiday Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000304', N'Holiday Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000305', N'Holiday Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000306', N'Title: Nutcracker', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000307', N'Limited Edition Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000308', N'Limited Edition Package II', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000309', N'Liminted Edition Package III', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000310', N'Gem Socket Punch (Bonus)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000311', N'Magic Chest of Change (Bonus)', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000312', N'New Traditional Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000313', N'New Traditional Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000314', N'New Traditional Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000315', N'New Traditional Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000316', N'New Traditional Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000317', N'New Traditional Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000318', N'New Traditional Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000319', N'New Traditional Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000320', N'Title : Happy New Year', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000321', N'New Poison''s Secret Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000322', N'Liminted Edition Package IV', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000323', N'Avatar Special Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000324', N'Avatar Costume Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000325', N'Avatar Normal Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000326', N'Title : Heir to the Bloodwind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000327', N'Black Floral Dress Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000328', N'+3 Armor Upgrade Pack', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000329', N'+6 Weapon Upgrade Pack', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000330', N'Extreme Booster Pack', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000331', N'Random Avatar Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000332', N'Avatar Creation [Leila] : North America', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000333', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000334', N'Newbie Ration Box [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000335', N'Red Golden Pattern Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000336', N'Violet Female Warrior Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000337', N'Yellow Lady Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000338', N'Red Golden Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000339', N'Blue Young Gentleman Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000340', N'Golden Pattern Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000341', N'Blue Space Battle Suit Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000342', N'Red Slide Slit Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000343', N'Brown Mafia Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000344', N'Black Gangster Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000345', N'White Snow Flower Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000346', N'Black Leather Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000347', N'Red Wandering Minstrel Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000348', N'Purple Boxing Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000349', N'Pink Sagunja[Plum] Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000350', N'White Nun Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000351', N'Red Gold Random Pack [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000352', N'Violet Amazon Random Pack [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000353', N'Yellow Lady Random Pack [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000354', N'Crimson Conjurer Random Pack [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000355', N'Little Blue-Blood Random Pack [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000356', N'Silver Sage Random Pack [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000357', N'Blue Star Random Pack [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000358', N'Scarlet Chic Random Pack [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000359', N'Brown Mafia Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000360', N'Black Gangster Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000361', N'White Snow Flower Random Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000362', N'Black Leather Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000363', N'Red Wandering Minstrel Random Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000364', N'Boxing Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000365', N'Pink Sagunja[Plum] Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000366', N'White Nun Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000367', N'Poisons Strange Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000368', N'Red Gold Box [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000369', N'Violet Amazon Box [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000370', N'Yellow Lady Box [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000371', N'Crimson Conjurer Box [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000372', N'Little Blue-Blood Box [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000373', N'Silver Sage Box [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000374', N'Blue Star Box [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000375', N'Scarlet Chic Box [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000376', N'Brown Mafia Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000377', N'Black Gangster Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000378', N'White Snow Flower Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000379', N'Black Leather Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000380', N'Red Wandering Minstrel Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000381', N'Purple Boxing Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000382', N'Pink Sagunja[Plum] Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000383', N'White Nun Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000391', N'Premium Avatar Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000392', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000393', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000394', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000395', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000396', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000397', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000398', N'Red Golden Pattern Random Package [Frantz] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000399', N'Violet Female Warrior Random Package [Roselle] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000400', N'Yellow Lady Random Package [Leila] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000401', N'Red Golden Pattern Random Package [Angela] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000402', N'Blue Young Gentleman Random Package [Edgar] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000403', N'Golden Pattern Random Package [Tude] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000404', N'Blue Space Battle Suit Random Package [Meilin] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000405', N'Red Side Slit Random Package [Natasha] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000406', N'Sky Blue Bird Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000407', N'Black Queen Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000408', N'Purple Winter Costume Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000409', N'Black Floral Dress Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000410', N'Summer Scuba Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000411', N'Summer Scuba Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000412', N'Summer Scuba Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000413', N'Summer Scuba Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000414', N'Summer Scuba Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000415', N'Summer Scuba Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000416', N'Summer Scuba Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000417', N'Summer Scuba Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000418', N'Expand Character Creation Slot', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000421', N'A Daily Party Objective Recharge Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000422', N'Golden Seal Team''s Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000423', N'Summon Pet : Lulu', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000424', N'Summon Pet : Coco', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000425', N'Summon Pet : Yongyong', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000426', N'Black Dictator Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000428', N'Indigo Pirate Costume Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000429', N'Blue Pirate Costume Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000430', N'Black Pirate Costume Random Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000431', N'Red Pirate Costume Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000432', N'Brown Pirate Costume Random Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000433', N'Black Pirate Costume Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000434', N'Blue Pirate Costume Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000435', N'Brown Pirate Costume Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000436', N'Indigo Pirate Costume Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000437', N'Blue Pirate Costume Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000438', N'Black Pirate Costume Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000439', N'Red Pirate Costume Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000440', N'Brown Pirate Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000441', N'Black Pirate Costume Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000442', N'Blue Pirate Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000443', N'Brown Pirate Costume Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000444', N'Title : Last Member of the Underground Guild', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000445', N'Title: Dress Classy Dance Cheesy', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000446', N'Indigo Pirate Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000447', N'Blue Pirate Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000448', N'Black Pirate Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000449', N'Red Pirate Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000450', N'Brown Pirate Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000451', N'Black Pirate Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000452', N'Blue Pirate Random Package [Maylin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000453', N'Brown Pirate Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000454', N'Indigo Pirate Random Package 10 pcs [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000455', N'Blue Pirate Random Package 10 pcs [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000456', N'Black Pirate Random Package 10 pcs [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000457', N'Red Pirate Random Package 10 pcs [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000458', N'Brown Pirate Random Package 10 pcs [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000459', N'Black Pirate Random Package 10 pcs [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000460', N'Blue Pirate Random Package 10 pcs [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000461', N'Brown Pirate Random Package 10 pcs [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000462', N'Reset Skills [Limited Period] [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000463', N'Radiant Wedding Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000464', N'Radiant Wedding Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000465', N'Radiant Wedding Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000466', N'Radiant Wedding Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000467', N'Radiant Wedding Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000468', N'Radiant Wedding Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000469', N'Radiant Wedding Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000470', N'Radiant Wedding Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000471', N'Radiant Wedding Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000472', N'Expand Account Warehouse (6 Slots)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000473', N'Gem Extractor', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'2000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000474', N'Improved Gem Extractor', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000475', N'Gem Extractor [Protection]', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'4000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000476', N'Improved Gem Extractor [Protection]', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'10000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000477', N'Title : I do I do', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000478', N'Avatar Costume Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000479', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000480', N'Avatar Costume Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000481', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000482', N'Avatar Costume Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000483', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000484', N'Avatar Special Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000485', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000486', N'Avatar Special Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000487', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000488', N'Avatar Special Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000489', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000490', N'Reset Skills [Limited Period] [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000491', N'Complete Skill Reset Package', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000492', N'Poison''s Halloween Pack [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000493', N'Poison''s Halloween Pack [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000494', N'Poison''s Halloween Pack [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000495', N'Poison''s Halloween Pack [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000496', N'Poison''s Halloween Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000497', N'Poison''s Halloween Pack [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000498', N'Poison''s Halloween Pack [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000499', N'Poison''s Halloween Pack [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000500', N'Poison''s Halloween Pack [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000501', N'Title: Monster Masher', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000502', N'Brown Mafia Random Package [Frantz] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000503', N'Black Gangster Random Package [Roselle] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000504', N'White Snow Flower Random Package [Leila] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000505', N'Black Leather Random Package [Angela] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000506', N'Red Minstrel Random Package [Edgar] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000507', N'Purple Boxing Random Package [Tude] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000508', N'Pink ''Four Gracious Plants'' [Plum] Random Package [Maylin] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000509', N'White Nun Random Package [Natasha] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000510', N'Title: Wild Inuit', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000511', N'Inuit Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000512', N'Inuit Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000513', N'Inuit Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000514', N'Inuit Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000515', N'Inuit Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000516', N'Inuit Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000517', N'Inuit Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000518', N'Inuit Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000519', N'Extreme Booster Pack[JPN]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000520', N'Save 50 Stamina [charge complete]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000521', N'Santa Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000522', N'Inuit Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000523', N'Santa Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000524', N'Inuit Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000525', N'Santa Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000526', N'Inuit Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000527', N'Santa Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000528', N'Inuit Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000529', N'White Cowboy Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000530', N'Indigo Pirate Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000531', N'White Cowgirl Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000532', N'Red Pirate Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000533', N'White Cowboy Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000534', N'Black Pirate Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000535', N'White Cowgirl Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000536', N'Brown Pirate Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000537', N'Poison''s Dim Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000538', N'Summon Pet : Yongyong', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000539', N'Blue Pirate Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000540', N'Title: Snake Charmer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000541', N'Snake Pattern Package[Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000542', N'Snake Pattern Package[Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000543', N'Snake Pattern Package[Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000544', N'Snake Pattern Package[Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000545', N'Snake Pattern Package[Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000546', N'Snake Pattern Package[Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000547', N'Snake Pattern Package[Maylin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000548', N'Snake Pattern Package[Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000549', N'Snake Pattern Package[Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000550', N'Title: Shining Ark', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000551', N'Shining Ark Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000552', N'Shining Ark Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000553', N'Shining Ark Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000554', N'Shining Ark Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000555', N'Shining Ark Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000556', N'Furiously Burning Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000557', N'Furiously Burning Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000558', N'Furiously Burning Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000559', N'Furiously Burning Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000560', N'Furiously Burning Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000561', N'Black Chain Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000562', N'Black Opera Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000563', N'Black Fur Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000564', N'Black Casual Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000565', N'Black Feather Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000566', N'Shining Ark Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000567', N'Burning Red Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000568', N'Burning Red Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000569', N'Burning Red Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000570', N'Burning Red Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000571', N'Burning Red Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000572', N'Burning Blue Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000573', N'Burning Red Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000574', N'Burning White Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000575', N'Burning White Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000576', N'Burning White Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000577', N'Burning White Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000578', N'Burning White Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000579', N'Burning White Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000580', N'Burning White Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000581', N'White School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000582', N'Purple School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000583', N'Brown School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000584', N'Black School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000585', N'Yellow School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000586', N'White School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000587', N'White School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000588', N'Purple School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000589', N'Black School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000590', N'Beige School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000591', N'Dark Brown School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000592', N'Black School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000593', N'Dark Brown School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000594', N'Pink School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000595', N'Yellow School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000596', N'Blue School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000597', N'Green School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000598', N'Purple School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000599', N'Pink School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000600', N'Brown School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000601', N'White School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000602', N'Yellow School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000603', N'Red School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000604', N'Black School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000605', N'White School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000606', N'Green School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000607', N'Black School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000608', N'Title: Chairman', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000609', N'Title: Principal', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000610', N'Title: Student Head', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000611', N'Title: President of the Student Council', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000612', N'Title: President', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000613', N'Title: Vice President', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000614', N'Title: Lead Manager', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000615', N'Title: You are a student and I am a teacher', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000616', N'Title: Schoolboy', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000617', N'Title: Bad Student', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000618', N'School Uniform Title Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000619', N'Navy Blue Dress Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000620', N'Navy Blue Female Warrior Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000621', N'Black Label Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000622', N'Black Tailcoat Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000623', N'Black Boxing Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000624', N'Black Flame Patterned Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000625', N'Black Cheongsam Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000626', N'White Blazing Costume Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000627', N'White Blazing Costume Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000628', N'White Blazing Costume Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000629', N'White Blazing Costume Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000630', N'White Blazing Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000631', N'White Blazing Costume Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000632', N'White Blazing Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000633', N'White Blazing Costume Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000634', N'White Blazing Costume Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000635', N'White Blazing Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000636', N'White Blazing Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000637', N'White Blazing Costume Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000638', N'White Blazing Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000639', N'White Blazing Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000640', N'White Blazing Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000641', N'White Blazing Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000642', N'White Blazing Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000643', N'White Blazing Costume Box [Ian]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000644', N'White Blazing Costume Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000645', N'White Blazing Costume Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000646', N'White Blazing Costume Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000647', N'White Blazing Costume Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000648', N'White Blazing Costume Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000649', N'White Blazing Costume Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000650', N'White Blazing Costume Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000651', N'White Blazing Costume Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000652', N'White Blazing Costume Random Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000653', N'White Blazing Costume Random Package [Frantz] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000654', N'White Blazing Costume Random Package [Roselle] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000655', N'White Blazing Costume Random Package [Leila] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000656', N'White Blazing Costume Random Package [Angela] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000657', N'White Blazing Costume Random Package [Edgar] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000658', N'White Blazing Costume Random Package [Tude] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000659', N'White Blazing Costume Random Package [Meilin] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000660', N'White Blazing Costume Random Package [Natasha] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000661', N'White Blazing Costume Random Package [Ian] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000662', N'Purple Cross Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000663', N'Pink Lace Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000664', N'Orange Stripe Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000665', N'Red Bocchan Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000666', N'Green Retro Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000667', N'Yellow Four Gentleman [Kook] Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000668', N'Green Rider Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000669', N'Red Chain Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000670', N'Purple Opera Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000671', N'Pink Fur Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000672', N'Emerald Minstrel Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000673', N'Checked Casual Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000674', N'Pink Space Combat Suit Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000675', N'White Feather Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000676', N'White School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000677', N'White School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000678', N'Beige School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000679', N'Yellow School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000680', N'Green School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000681', N'White School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000682', N'Red School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000683', N'Purple School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000684', N'Yellow School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000685', N'Dark Brown School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000686', N'Pink School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000687', N'Purple School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000688', N'Pink School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000689', N'Yellow School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000690', N'Brown School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000691', N'Black School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000692', N'Black School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000693', N'Dark Brown School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000694', N'Blue School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000695', N'Brown School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000696', N'Black School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100000', N'Scroll: Physical Attack +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100001', N'Scroll: Physical Attack +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100002', N'Scroll: Physical Defense +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100003', N'Scroll: Physical Defense +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100004', N'Scroll: Magic Attack +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100005', N'Scroll: Magic Attack +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100006', N'Scroll: Magic Defense +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100007', N'Scroll: Magic Defense +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100008', N'Scroll: Increase Critical +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100009', N'Scroll: Increase Critical +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100010', N'Scroll: Increase Speed +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100011', N'Scroll: Increase Speed +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100012', N'Scroll: Increase HP +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100013', N'Scroll: Increase HP +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100014', N'Scroll: Increase MP +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100015', N'Scroll: Increase MP +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100016', N'Scroll: Critical Power +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100017', N'Scroll: Critical Power +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100018', N'Physical Defense Scroll: Lv.9', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100019', N'Physical Defense Scroll: Lv.10', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100020', N'Physical Attack Scroll: Lv.1', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100021', N'Physical Attack Scroll: Lv.2', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100022', N'Physical Attack Scroll: Lv.3', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100023', N'Physical Attack Scroll: Lv.4', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100024', N'Physical Attack Scroll: Lv.5', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100025', N'Physical Attack Scroll: Lv.6', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100026', N'Physical Attack Scroll: Lv.7', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100027', N'Physical Attack Scroll: Lv.8', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100028', N'Physical Attack Scroll: Lv.9', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100029', N'Physical Attack Scroll: Lv.10', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100030', N'Scroll: 2x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100031', N'Scroll: 3x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100032', N'Scroll: 4x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100033', N'Scroll: 5x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100034', N'Conditional Selective Item : Character Weapon', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100035', N'Basic Fishing Rod Set', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100036', N'Bait1 : Cash Item', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'6', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100037', N'Bait2 : Precious Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100038', N'Bait3 : Less Precious Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100039', N'Bait4 : Regular Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100040', N'Bait5 : Cheap Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100101', N'Young Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'101', N'1', N'240', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100102', N'Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'102', N'1', N'480', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100103', N'Big Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'103', N'1', N'800', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100104', N'Giant Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'104', N'1', N'1200', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100105', N'King Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'105', N'1', N'1600', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100111', N'Young Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'111', N'1', N'300', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100112', N'Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'112', N'1', N'600', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100113', N'Big Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'113', N'1', N'1000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100114', N'Giant Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'114', N'1', N'1500', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100115', N'King Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'115', N'1', N'2000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100121', N'Lowest Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'121', N'1', N'500', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100122', N'Low Grade Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'122', N'1', N'1000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100123', N'Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'123', N'1', N'2000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100124', N'High Grade Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'124', N'1', N'3000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100125', N'Highest Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'125', N'1', N'5000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101001', N'Hopfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101002', N'Mudfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101003', N'Catfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'30', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101004', N'Minnow', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'40')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101005', N'Lenok', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'60', N'60')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101006', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101007', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101008', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101009', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101010', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101011', N'Kissing Gourami', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101012', N'Clownfish', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'50', N'50')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101013', N'Oscar', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'80', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101014', N'Cichlid', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'120', N'120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101015', N'Dwarf Puffer', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'160', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101016', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101017', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101018', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101019', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101020', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101021', N'Arowana', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'100', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101022', N'Discus', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'190', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101023', N'Cleaner Shrimp', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'320', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101024', N'Porcupine Fish', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'490', N'490')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101025', N'Giant Mottled Eel', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'650', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101026', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101027', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101028', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101029', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101030', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101031', N'Pink Dolphin', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'1370', N'1370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101032', N'Manta Ray', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'2740', N'2740')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101033', N'Unicorn Tang', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'4560', N'4560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101034', N'Lungfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'6840', N'6840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101035', N'Spearfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'9120', N'9120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101036', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101037', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101038', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101039', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101040', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101041', N'Leafy Sea Dragon', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'20000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101042', N'Baby Viper', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40000', N'40000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101043', N'Lion''s Mane Jellyfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'70000', N'70000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101044', N'Giant Squid', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'100000', N'100000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101045', N'Sperm Whale', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'140000', N'140000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101046', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101047', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101048', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101049', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101050', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101101', N'Marble Crayfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101102', N'Gold Carp', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101103', N'Rainbow Trout', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'30', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101104', N'Paradise Fish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'40')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101105', N'Axolotl', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'60', N'60')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101106', N'Fish6', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101107', N'Fish7', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101108', N'Fish8', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101109', N'Fish9', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101110', N'Fish10', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101111', N'Ramirezi', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101112', N'Piranha', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'50', N'50')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101113', N'Neon Tetra', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'80', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101114', N'Betta Fish', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'120', N'120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101115', N'Gaah', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'160', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101116', N'A little rare fish1', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101117', N'A little rare fish2', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101118', N'A little rare fish3', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101119', N'A little rare fish4', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101120', N'A little rare fish5', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101121', N'Pearl Oyster', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'100', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101122', N'Red Seastar', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'190', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101123', N'Jewel Sea Anemone', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'320', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101124', N'Ghost Scorpion Fish', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'490', N'490')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101125', N'Marine Turtle', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'650', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101126', N'A little rare fish1', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101127', N'A little rare fish2', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101128', N'A little rare fish3', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101129', N'A little rare fish4', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101130', N'A little rare fish5', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101131', N'Albacore Tuna', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'1370', N'1370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101132', N'French Angelfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'2740', N'2740')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101133', N'Moray', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'4560', N'4560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101134', N'Flying Fish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'6840', N'6840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101135', N'Baby Haken', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'9120', N'9120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101136', N'A little rare fish1', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101137', N'A little rare fish2', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101138', N'A little rare fish3', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101139', N'A little rare fish4', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101140', N'A little rare fish5', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101141', N'Goblin Shark', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'20000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101142', N'Ocean Sunfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40000', N'40000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101143', N'Blobfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'70000', N'70000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101144', N'Atlantic Footballfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'100000', N'100000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101145', N'Dumbo Octopus', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'150000', N'150000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101146', N'A little rare fish1', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101147', N'A little rare fish2', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101148', N'A little rare fish3', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101149', N'A little rare fish4', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101150', N'A little rare fish5', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000001', N'"KRW 10', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000002', N'"KRW 20', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000003', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000004', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000005', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000006', N'PPS-500', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000007', N'PPS-100', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000008', N'PPS-50', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000009', N'Lv. 20 Arrived', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000010', N'Lv. 20 Arrived 2', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000011', N'Lv. 20 Arrived 3', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000012', N'Destroyer ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000013', N'Guardian', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000014', N'Mini Stop', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000015', N'Mini Stop', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000016', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000017', N'Invite a Friend Event Reward', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000018', N'Movie Director of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000019', N'Art Director of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000020', N'Script Writer of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000021', N'Rusty Art : Director''s Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000022', N'Rusty Art : Art Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000023', N'Rusty Art : Script Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000024', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000025', N'Resurrection Scroll (set of three) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000026', N'Resurrection Scroll (set of five) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000027', N'Hard Work and Effort', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000028', N'Quiz King', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000029', N'Great augment stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000030', N'Battle Support Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000031', N'Veteran''s Supply Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000032', N'Scroll: 2x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000033', N'Scroll: 3x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000034', N'Scroll: 4x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000035', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000036', N'Title : e-stars', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000037', N'Decent AP recovery Potion', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000038', N'Sweet Potato Rice Cake', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000039', N'Purple Sweet Potato Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000040', N'White Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000041', N'Black Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000042', N'Title: The Gobbler', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000043', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000044', N'Halloween Pumpkin Cupcake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000045', N'Halloween Chocolate Cookie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000046', N'Halloween Pecan Pie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000047', N'Halloween Apple Toffee', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000048', N'Eyeball Candy', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000049', N'Poison''s Spooky Letter', N'4', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000050', N'Poison''s Spooky Letter (Copy)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000051', N'Poison''s Spooky Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000052', N'Stamp', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000053', N'Poison''s Useful Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000054', N'Snow Crystal', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000055', N'Santarium', N'3', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000056', N'Poison''s Cheerful Chest', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000057', N'Holiday Fruitcake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000058', N'Holiday Chiffon Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000059', N'Holiday Butter Cookie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000060', N'Holiday Strawberry Tart', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000061', N'Joheim''s Gift Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000062', N'Bronze Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000063', N'Silver Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000064', N'Gold Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000065', N'New Year''s Soup', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000066', N'New Year''s Juice', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000067', N'New Year''s Steak', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000068', N'New Year''s Vegetables', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000069', N'Hamburger Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000070', N'Title : 2012', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000071', N'Silk Pack', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000072', N'Lucky Bag', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000073', N'Dragon''s Scale', N'3', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000074', N'Dragon Costume Head [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000075', N'Dragon Costume Gloves [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000076', N'Dragon Costume Shoes [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000077', N'Dragon Costume Head [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000078', N'Dragon Costume Gloves [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000079', N'Dragon Costume Shoes [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000080', N'Dragon Costume Head [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000081', N'Dragon Costume Gloves [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000082', N'Dragon Costume Shoes [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000083', N'Dragon Costume Head [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000084', N'Dragon Costume Gloves [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000085', N'Dragon Costume Shoes [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000086', N'Dragon Head Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000087', N'Dragon Gloves Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000088', N'Dragon Shoes Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000089', N'Milk Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000090', N'Strawberry Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000091', N'Almond Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000092', N'Pet Booster Food (500)', N'3', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000093', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000094', N'Pet Booster Food (1000)', N'3', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000001', N'Powerful AP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000002', N'Powerful HP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000003', N'Powerful MP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000004', N'Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000005', N'Renaming Contract [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000006', N'Portable Warehouse [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000007', N'Expand Personal Warehouse (6 Slots) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000008', N'Reset PvP Score [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000009', N'Yellow Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000010', N'Colorful Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000011', N'Large Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000012', N'Level Up Package [7 Days] [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000013', N'Gem Socket Punch [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000014', N'Rare Ether of Change [Event]', N'2', N'0', N'0', N'16', N'4', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000015', N'Unique Ether of Change [Event]', N'2', N'0', N'0', N'16', N'5', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000016', N'Resurrection Scroll x 10 [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000017', N'Red Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000018', N'Poison''s Secret Box [Event]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000019', N'Small Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000020', N'Reset Skill Points [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000021', N'Incredible Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000022', N'Newbie Ration Box [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000023', N'World Megaphone [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000024', N'Full Equipment Repair Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000025', N'Medium Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000026', N'Equipment Repair Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000027', N'Green Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000028', N'Golden Hearts [Event]', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000029', N'Blue Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000030', N'Save 100 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000031', N'Save 300 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000032', N'Save 500 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000033', N'Avatar Create [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000034', N'Avatar Create [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000035', N'Avatar Costume Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000036', N'Avatar Normal Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000037', N'Avatar Special Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000038', N'Sky Blue Bird Package [Meilin] : [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000039', N'Avatar Special Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000040', N'Avatar Costume Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000041', N'Avatar Normal Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000042', N'Black Queen Package [Roselle] : [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000043', N'Expand Personal Warehouse (1 Slot)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000044', N'Alchemist''s Jar [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000045', N'Magic Chest of Change [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000046', N'+5 Armor Enchant Kit [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000047', N'+10 Armor Enchant Kit [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000048', N'Avatar Special Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000049', N'Avatar Costume Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000050', N'Avatar Normal Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000051', N'Meilin Chen Creator', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000052', N'Purple Winter Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000053', N'Roselle Vergerius Creator', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000054', N'Golden Hearts', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000055', N'Title: BREAKERZ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000001', N'PC Café Guardian', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000002', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000003', N'Augment Stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000004', N'Green Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000005', N'Yellow Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000006', N'Blue Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000007', N'Red Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000008', N'Incredible Full-Strength Adhesive', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000009', N'PC Café Coupon Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000010', N'PC Café Guardian [7 days]', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000001', N'Ice Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000002', N'Complete Pendant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000003', N'Lucky Coin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000004', N'Card Key 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000005', N'Card Key 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000006', N'Theater Ticket', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000007', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000008', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000009', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'912000010', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+
+-- ----------------------------
+-- Table structure for Base_ItemTable_All
+-- ----------------------------
+IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Base_ItemTable_All]') AND type IN ('U'))
+ DROP TABLE [dbo].[Base_ItemTable_All]
+GO
+
+CREATE TABLE [dbo].[Base_ItemTable_All] (
+ [id] int NOT NULL,
+ [name] nvarchar(100) COLLATE Korean_Wansung_CI_AS NOT NULL,
+ [inventory_type] int DEFAULT 0 NOT NULL,
+ [RestraintType] int NOT NULL,
+ [ReconstructionMax] int NOT NULL,
+ [Category] int NOT NULL,
+ [Branch] int NOT NULL,
+ [LevelLimit] int NOT NULL,
+ [max_dur] int DEFAULT 0 NOT NULL,
+ [is_socket] int DEFAULT 0 NOT NULL,
+ [max_socket_num] int DEFAULT 0 NOT NULL,
+ [kind] int DEFAULT 0 NOT NULL,
+ [weight] int DEFAULT 0 NOT NULL,
+ [BuyPrice] int NOT NULL,
+ [SellPrice] int NOT NULL
+)
+GO
+
+ALTER TABLE [dbo].[Base_ItemTable_All] SET (LOCK_ESCALATION = TABLE)
+GO
+
+
+-- ----------------------------
+-- Records of Base_ItemTable_All
+-- ----------------------------
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100', N'Fortune Dice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'926', N'Grey Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'927', N'Red Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'928', N'Dark Blue Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'929', N'Yellow Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'930', N'White Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'931', N'Purple Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'932', N'Wine Color Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'933', N'Afro Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'934', N'Frantz Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'935', N'Frantz Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'936', N'Frantz Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'937', N'Frantz Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'938', N'Frantz Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'939', N'Black Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'940', N'White Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'941', N'Yellow Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'942', N'Pink Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'943', N'Green Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'944', N'Blue Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'945', N'Grey Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'946', N'Afro Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'947', N'Angela Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'948', N'Angela Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'949', N'Angela Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'950', N'Angela Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'951', N'Angela Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'952', N'White Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'953', N'Purple Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'954', N'Grey Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'955', N'Silver Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'956', N'Black Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'957', N'White Streaked Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'958', N'Red Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'959', N'Afro Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'960', N'Tude Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'961', N'Tude Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'962', N'Tude Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'963', N'Tude Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'964', N'Tude Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'965', N'Standard Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'966', N'Standard Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'967', N'Standard Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'968', N'Meilin Chen Afro Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'969', N'Meilin Chen Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'970', N'Meilin Chen Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'971', N'Meilin Chen Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'972', N'Meilin Chen Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'973', N'Meilin Chen Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'974', N'Meilin Chen Standard Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'975', N'Meilin Chen Standard Accessory1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'976', N'Roselle Afro Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'977', N'Roselle Failed Hair1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'978', N'Roselle Failed Hair2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'979', N'Roselle Failed Hair3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'980', N'Roselle Failed Hair4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'981', N'Roselle Failed Hair5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'982', N'Roselle Standard Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'983', N'Edgar Afro Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'984', N'Edgar Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'985', N'Edgar Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'986', N'Edgar Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'987', N'Edgar Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'988', N'Edgar Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'989', N'Edgar Standard Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'990', N'Noble Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'991', N'Tied Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'992', N'Trendy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'993', N'Noble Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'994', N'Tied Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'995', N'Trendy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'996', N'Noble Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'997', N'Tied Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'998', N'Trendy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'999', N'Noble Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1000', N'Tied Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1001', N'Trendy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1002', N'Noble Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1003', N'Tied Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1004', N'Trendy Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1005', N'Noble Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1006', N'Tied Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1007', N'Trendy Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1008', N'Afro Perm', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1009', N'Leila Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1010', N'Leila Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1011', N'Leila Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1012', N'Leila Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1013', N'Leila Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1014', N'Straight Perm', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1015', N'Ian Afro Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1016', N'Ian Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1017', N'Ian Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1018', N'Ian Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1019', N'Ian Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1020', N'Ian Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1021', N'Ian Straight Perm', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1022', N'Noble Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1023', N'Tied Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1024', N'Trendy Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'3333', N'Clovis Box for testing', N'2', N'0', N'0', N'13', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16001', N'Hunter''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16002', N'Fighter''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16003', N'Gladiator''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16004', N'Slaughterer''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16005', N'Warrior''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16006', N'King''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16007', N'Great King''s Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16008', N'Angelic Voucher', N'3', N'0', N'0', N'40', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16111', N'Hunter''s Chest', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16121', N'Fighter''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16122', N'Fighter''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16131', N'Gladiator''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16132', N'Gladiator''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16141', N'Slaughterer''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16142', N'Slaughterer''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16151', N'Warrior''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16152', N'Warrior''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16161', N'King''s Chest I', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16162', N'King''s Chest II', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16211', N'Hunter''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16221', N'Fighter''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16231', N'Gladiator''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16241', N'Slaughterer''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16251', N'Warrior''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16261', N'King''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16501', N'Training Hall Gift Ticket 1', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16502', N'Training Hall Gift Ticket 2', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16503', N'Mausoleum Arena Ticket', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16504', N'Training Hall Gift Ticket 4', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16505', N'Training Hall Gift Ticket 5', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16506', N'Training Hall Gift Ticket 6', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16507', N'Training Hall Gift Ticket 7', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16508', N'Training Hall Gift Ticket 8', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16509', N'VIP Pass', N'3', N'0', N'0', N'36', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16701', N'Dead Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16702', N'Nepenthese Sprout', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16703', N'Zombie Nepenthese Sprout', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16704', N'Bomi Toadstool', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16705', N'Mandragora''s Root', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16706', N'Treant''s Fruit', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16707', N'Seed of Ice Flower', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16708', N'Poison Flower''s Seed', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20001', N'Fabric Imbued with Magic', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20002', N'White Fabric Imbued with Magic', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20003', N'Dark Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20004', N'Silver Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20005', N'Golden Thread Ball', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20006', N'Mysterious Dye', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20007', N'Water Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20008', N'Scales Imbued with Magic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20009', N'Feather Imbued with Magic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20010', N'Magic-Imbued Essence', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011', N'Magical Rabbit Leather', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20100', N'Alchemist''s Pot', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21001', N'Teddy Bear Body Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21002', N'Teddy Bear Head Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21003', N'Shark Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21004', N'Octopus Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21005', N'Carp Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21006', N'Mantis Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21007', N'Roach Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21008', N'Locust Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022', N'Dark Seal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023', N'Dark Seal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21024', N'Dark Seal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21025', N'Dark Seal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21026', N'Dark Seal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21027', N'Dark Seal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21028', N'White Devil Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21029', N'White Devil Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030', N'White Devil Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031', N'White Devil Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032', N'White Devil Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033', N'White Devil Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21034', N'Blue Seal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21035', N'Blue Seal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21036', N'Blue Seal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21037', N'Blue Seal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21038', N'Blue Seal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21039', N'Blue Seal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21040', N'Red Formal Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21041', N'Red Formal Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21042', N'Red Formal Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21043', N'Red Formal Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21044', N'Red Formal Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21045', N'Red Formal Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21046', N'Swallowtail Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21047', N'Swallowtail Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21048', N'Swallowtail Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21049', N'Swallowtail Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21050', N'Swallowtail Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21051', N'Swallowtail Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21052', N'Hunter Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21053', N'Hunter Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21054', N'Hunter Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21055', N'Hunter Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21056', N'Hunter Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21057', N'Hunter Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21065', N'Red Seal Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21066', N'Red Seal Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21067', N'Red Seal Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21068', N'Red Seal Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21069', N'Red Seal Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21070', N'Red Seal Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21071', N'Plaid Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21072', N'Plaid Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21073', N'Plaid Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21074', N'Plaid Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21075', N'Plaid Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21076', N'Plaid Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21077', N'Night Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21078', N'Night Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21079', N'Night Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21080', N'Night Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21081', N'Night Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21082', N'Night Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21083', N'Plum Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21084', N'Plum Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21085', N'Plum Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21086', N'Plum Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21087', N'Plum Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21088', N'Plum Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21089', N'Red Witch Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21090', N'Red Witch Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21091', N'Red Witch Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21092', N'Red Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21093', N'Red Witch Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21094', N'Red Witch Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21095', N'Red Spider Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21096', N'Red Spider Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21097', N'Red Spider Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21098', N'Red Spider Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21099', N'Red Spider Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21100', N'Red Spider Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21108', N'Brown Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21109', N'Brown Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21110', N'Brown Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21111', N'Brown Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21112', N'Brown Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21113', N'Brown Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21114', N'Hooligan Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21115', N'Hooligan Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21116', N'Hooligan Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21117', N'Hooligan Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21118', N'Hooligan Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21119', N'Hooligan Tie Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21120', N'Bright Uniform Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21121', N'Bright Uniform Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21122', N'Bright Uniform Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21123', N'Bright Uniform Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21124', N'Bright Uniform Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21125', N'Bright Uniform Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21126', N'Rustic Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21127', N'Rustic Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21128', N'Rustic Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21129', N'Rustic Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21130', N'Rustic Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21131', N'Rustic Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21132', N'Dark Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21133', N'Dark Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21134', N'Dark Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21135', N'Dark Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21136', N'Dark Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21137', N'Dark Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21138', N'Conquest Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21139', N'Conquest Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21140', N'Conquest Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21141', N'Conquest Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21142', N'Conquest Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21143', N'Conquest Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21144', N'Brown Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21145', N'Hooligan Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21146', N'Bright Uniform Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21147', N'Rustic Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21148', N'Dark Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21149', N'Conquest Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21185', N'Red Fox Coat Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21186', N'Red Fox Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21187', N'Red Fox Shoes Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21188', N'Red Fox Gloves Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21189', N'Red Fox Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21190', N'Red Fox Tie Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21191', N'White Blaze Jacket Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21192', N'White Blaze Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21193', N'White Blaze Shoes Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21194', N'White Blaze Blouse Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21195', N'White Blaze Tie Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21196', N'White Sol Coat Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21197', N'White Sol Pants Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21198', N'White Sol Shoes Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21199', N'White Sol Headband Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21200', N'White Sol Shirt Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21201', N'White Sol Necklace Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21202', N'White Sol Gloves Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21222', N'Shark Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21246', N'Octopus Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21274', N'Carp Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21281', N'White Witch Gloves Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21381', N'Orange Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21382', N'Orange Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21383', N'Orange Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21384', N'Orange Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21385', N'Orange Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21386', N'Orange Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21387', N'Orange Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21388', N'Pink Dress Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21389', N'Pink Dress Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21390', N'Pink Dress Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21391', N'Pink Dress Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21392', N'Pink Dress Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21393', N'Pink Dress Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21394', N'Pink Dress Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21395', N'Red Check Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21396', N'Red Check Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21397', N'Red Check Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21398', N'Red Check Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21399', N'Red Check Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21400', N'Red Check Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21401', N'Red Check Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21402', N'Ranger Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21403', N'Ranger Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21404', N'Ranger Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21405', N'Ranger Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21406', N'Ranger Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21407', N'Ranger Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21408', N'Ranger Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21410', N'White Dress Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21411', N'White Dress Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21412', N'White Dress Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21413', N'White Dress Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21414', N'White Dress Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21415', N'White Dress Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21416', N'White Dress Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21417', N'Bee Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21418', N'Angler Costume Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21419', N'Blue Frill Jacket Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21420', N'Blue Frill Skirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21421', N'Blue Frill Shoes Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21422', N'Blue Frill Gloves Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21423', N'Blue Frill Shirt Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21424', N'Blue Frill Tie Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21425', N'Blue Frill Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21426', N'Black Hawk Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21427', N'White Hawk Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21428', N'Pink Hawk Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21429', N'Red Pinned Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21430', N'Purple Pinned Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21431', N'Grey Pinned Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21432', N'Yellow Reggae Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21433', N'Purple Reggae Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21434', N'Green Reggae Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21435', N'Purple Foxy Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21436', N'Red Foxy Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21437', N'Rose Foxy Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21438', N'Grey Trimmed Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21439', N'Red Trim Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21440', N'Pink Trim Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21441', N'Lovely Black Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21442', N'Lovely Yellow Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21443', N'Lovely Red Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21444', N'Cute Yellow Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21445', N'Cute Pink Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21446', N'Cute Black Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21447', N'Floral Black Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21448', N'Floral Red Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21449', N'Floral Yellow Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21450', N'Black Flowing Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21451', N'Grey Flowing Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21452', N'Pink Flowing Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21453', N'Black Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21454', N'Grey Regent Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21455', N'Pink Regent Hair Design', N'3', N'0', N'0', N'100', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21456', N'Grey Apple Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21457', N'Red Apple Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21458', N'Pink Apple Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21459', N'Grey Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21460', N'Red Regent Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21461', N'Pink Regent Hair Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21462', N'Majestic Black Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21463', N'Majestic Yellow Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21464', N'Majestic Red Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21465', N'Black Regent Hair Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21466', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21467', N'Red Regent Hair Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21468', N'Upbeat Red Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21469', N'Upbeat Purple Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21470', N'Upbeat Grey Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21471', N'Red Regent Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21472', N'Plum Regent Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21473', N'Grey Regent Hair Design', N'3', N'0', N'0', N'101', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21474', N'Yellow Tied Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21475', N'Pink Tied Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21476', N'Black Tied Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21477', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21478', N'Pink Regent Hair Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21479', N'Black Regent Hair Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21480', N'Dreamy Yellow Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21481', N'Dreamy Purple Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21482', N'Dreamy Green Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21483', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21484', N'Plum Regent Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21485', N'Green Regent Hair Design', N'3', N'0', N'0', N'102', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21486', N'Wavy Black Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21487', N'Wavy Red Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21488', N'Wavy Yellow Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21489', N'Black Regent Hair Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21490', N'Red Regent Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21491', N'Yellow Regent Hair Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21492', N'Purple Wild Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21493', N'Red Wild Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21494', N'Rose Wild Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21495', N'Plum Regent Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21496', N'Red Regent Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21497', N'Rose Regent Hair Design', N'3', N'0', N'0', N'103', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21498', N'White Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21499', N'White Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21500', N'White Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21501', N'White Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21502', N'White Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21503', N'White Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21504', N'Green Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21505', N'Green Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21506', N'Green Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21507', N'Green Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21508', N'Green Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21509', N'Green Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21510', N'Yellow Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21511', N'Yellow Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21512', N'Yellow Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21513', N'Yellow Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21514', N'Yellow Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21515', N'Yellow Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21516', N'Purple Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21517', N'Purple Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21518', N'Purple Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21519', N'Purple Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21520', N'Purple Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21521', N'Purple Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21522', N'Red Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21523', N'Red Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21524', N'Red Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21525', N'Red Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21526', N'Red Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21527', N'Red Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21528', N'Dark Slayer Jacket Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21529', N'Dark Slayer Pants Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21530', N'Dark Slayer Shoes Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21531', N'Dark Slayer Glove Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21532', N'Dark Slayer Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21533', N'Dark Slayer Tights Design', N'3', N'0', N'0', N'104', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21534', N'Purple Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21535', N'Purple Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21536', N'Purple Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21537', N'Purple Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21538', N'Purple Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21539', N'Purple Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21540', N'Green Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21541', N'Green Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21542', N'Green Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21543', N'Green Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21544', N'Green Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21545', N'Green Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21546', N'Pink Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21547', N'Pink Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21548', N'Pink Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21549', N'Pink Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21550', N'Pink Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21551', N'Pink Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21552', N'Black Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21553', N'Black Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21554', N'Black Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21555', N'Black Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21556', N'Black Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21557', N'Black Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21558', N'White Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21559', N'White Duchess Skirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21560', N'White Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21561', N'White Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21562', N'White Duchess Shirt Design', N'3', N'0', N'0', N'91', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21563', N'White Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21564', N'Beige Duchess Jacket Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21565', N'Beige Duchess Skirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21566', N'Beige Duchess Shoes Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21567', N'Beige Duchess Glove Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21568', N'Beige Duchess Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21569', N'Beige Duchess Bow Design', N'3', N'0', N'0', N'107', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21570', N'Purple Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21571', N'Purple Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21572', N'Purple Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21573', N'Purple Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21574', N'Purple Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21575', N'Purple Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21576', N'Green Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21577', N'Green Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21578', N'Green Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21579', N'Green Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21580', N'Green Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21581', N'Green Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21582', N'Purple Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21583', N'Purple Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21584', N'Purple Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21585', N'Purple Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21586', N'Purple Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21587', N'Purple Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21588', N'Black Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21589', N'Black Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21590', N'Black Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21591', N'Black Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21592', N'Black Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21593', N'Black Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21594', N'White Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21595', N'White Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21596', N'White Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21597', N'White Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21598', N'White Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21599', N'White Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21600', N'Beige Noble Coat Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21601', N'Beige Noble Pants Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21602', N'Beige Noble Shoes Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21603', N'Beige Noble Glove Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21604', N'Beige Noble Shirt Design', N'3', N'0', N'0', N'92', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21605', N'Beige Noble Scarf Design', N'3', N'0', N'0', N'105', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21606', N'Green Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21607', N'Green Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21608', N'Green Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21609', N'Green Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21610', N'Green Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21611', N'Green Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21612', N'Purple Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21613', N'Purple Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21614', N'Purple Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21615', N'Purple Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21616', N'Purple Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21617', N'Purple Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21618', N'Grey Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21619', N'Grey Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21620', N'Grey Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21621', N'Grey Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21622', N'Grey Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21623', N'Grey Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21624', N'Red Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21625', N'Red Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21626', N'Red Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21627', N'Red Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21628', N'Red Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21629', N'Red Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21630', N'Black Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21631', N'Black Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21632', N'Black Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21633', N'Black Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21634', N'Black Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21635', N'Black Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21636', N'White Chen Vest Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21637', N'White Chen Shoes Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21638', N'White Chen Glove Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21639', N'White Chen Dress Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21640', N'White Chen Charm Design', N'3', N'0', N'0', N'106', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21641', N'White Chen Earring Design', N'3', N'0', N'0', N'93', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21642', N'Upsweep Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21643', N'Upsweep Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21644', N'Upsweep Red Hairstyle Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21645', N'Dandy Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21646', N'Dandy Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21647', N'Dandy Yellow Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21648', N'Pompadour Brown Hair Design', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21649', N'Pompadour Blue Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21650', N'Pompadour Yellow Hair Design', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21651', N'Indigo Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21652', N'Indigo Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21653', N'Indigo Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21654', N'Indigo Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21655', N'Indigo Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21656', N'Indigo Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21657', N'Black Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21658', N'Black Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21659', N'Black Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21660', N'Black Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21661', N'Black Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21662', N'Black Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21663', N'Dapple Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21664', N'Dapple Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21665', N'Dapple Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21666', N'Dapple Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21667', N'Dapple Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21668', N'Dapple Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21669', N'Red Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21670', N'Red Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21671', N'Red Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21672', N'Red Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21673', N'Red Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21674', N'Red Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21675', N'Leopard Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21676', N'Leopard Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21677', N'Leopard Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21678', N'Leopard Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21679', N'Leopard Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21680', N'Leopard Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21681', N'White Outlaw Costume Jacket Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21682', N'White Outlaw Costume Pants Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21683', N'White Outlaw Costume Shoes Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21684', N'White Outlaw Costume Gloves Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21685', N'White Outlaw Costume Shirt Design [Ian]', N'3', N'0', N'0', N'94', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21686', N'White Outlaw Costume Necklace Design [Ian]', N'3', N'0', N'0', N'108', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21687', N'Rabbit Head Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21688', N'Rabbit Body Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21689', N'Rabbit Gloves Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21690', N'Rabbit Shoes Design', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'22001', N'Bleach', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30003', N'Buckthorn Leaf Bread', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30004', N'Grilled Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30005', N'Meat Pie', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30006', N'Cheesecake', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30007', N'Banana Bread', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30008', N'Sweet Potato Bread', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30009', N'Sweet Peony Bread', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30010', N'Wrinkle Moss Juice', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30011', N'Blue Mushroom Whiskey', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30012', N'Root Beer', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30013', N'Quality Wine', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30014', N'Peony Wine', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30015', N'Mysterious Liquor', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30016', N'Fragrant Ancient Moss Rum', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30019', N'Meat Soup', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30020', N'Sadixol', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30025', N'Beginner''s HP Recovery Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30026', N'Miscellaneous Merchant''s HP Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30027', N'Miscellaneous Merchant''s HP Potion (L)', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30028', N'Beginner''s MP Recovery Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30029', N'Miscellaneous Merchant''s MP Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30030', N'Miscellaneous Merchant''s MP Potion (L)', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30031', N'Elixir of Blood Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30032', N'Elixir of Blood Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30033', N'Elixir of Blood Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30034', N'Elixir of Blood Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30035', N'Elixir of Blood Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30036', N'Elixir of Blood Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30037', N'Elixir of Blood Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30038', N'Elixir of Blood Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30039', N'Elixir of Fire Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30040', N'Elixir of Fire Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30041', N'Elixir of Fire Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30042', N'Elixir of Fire Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30043', N'Elixir of Fire Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30044', N'Elixir of Fire Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30045', N'Elixir of Fire Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30046', N'Elixir of Fire Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30047', N'Elixir of Chaos Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30048', N'Elixir of Chaos Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30049', N'Elixir of Chaos Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30050', N'Elixir of Chaos Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30051', N'Elixir of Chaos Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30052', N'Elixir of Chaos Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30053', N'Elixir of Chaos Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30054', N'Elixir of Chaos Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30055', N'Elixir of Strength Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30056', N'Elixir of Strength Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30057', N'Elixir of Strength Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30058', N'Elixir of Strength Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30059', N'Elixir of Strength Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30060', N'Elixir of Strength Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30061', N'Elixir of Strength Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30062', N'Elixir of Strength Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30063', N'Elixir of Stone Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30064', N'Elixir of Stone Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30065', N'Elixir of Stone Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30066', N'Elixir of Stone Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30067', N'Elixir of Stone Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30068', N'Elixir of Stone Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30069', N'Elixir of Stone Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30070', N'Elixir of Stone Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30071', N'Elixir of Ice Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30072', N'Elixir of Ice Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30073', N'Elixir of Ice Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30074', N'Elixir of Ice Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30075', N'Elixir of Ice Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30076', N'Elixir of Ice Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30077', N'Elixir of Ice Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30078', N'Elixir of Ice Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30079', N'Elixir of Slow Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30080', N'Elixir of Slow Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30081', N'Elixir of Slow Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30082', N'Elixir of Slow Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30083', N'Elixir of Slow Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30084', N'Elixir of Slow Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30085', N'Elixir of Slow Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30086', N'Elixir of Slow Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30087', N'Elixir of Poison Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30088', N'Elixir of Poison Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30089', N'Elixir of Poison Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30090', N'Elixir of Poison Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30091', N'Elixir of Poison Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30092', N'Elixir of Poison Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30093', N'Elixir of Poison Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30094', N'Elixir of Poison Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30095', N'Elixir of Disease Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30096', N'Elixir of Disease Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30097', N'Elixir of Disease Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30098', N'Elixir of Disease Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30099', N'Elixir of Disease Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30100', N'Elixir of Disease Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30101', N'Elixir of Disease Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30102', N'Elixir of Disease Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30103', N'Elixir of Sleep Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30104', N'Elixir of Sleep Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30105', N'Elixir of Sleep Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30106', N'Elixir of Sleep Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30107', N'Elixir of Sleep Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30108', N'Elixir of Sleep Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30109', N'Elixir of Sleep Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30110', N'Elixir of Sleep Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30111', N'Elixir of Darkness Lv. 1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30112', N'Elixir of Darkness Lv. 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30113', N'Elixir of Darkness Lv. 3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30114', N'Elixir of Darkness Lv. 4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30115', N'Elixir of Darkness Lv. 5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30116', N'Elixir of Darkness Lv. 6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30117', N'Elixir of Darkness Lv. 7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30118', N'Elixir of Darkness Lv. 8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30119', N'Mrs. Winger''s Apple Soup', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30120', N'Gorgon''s HP Potion', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'230', N'38')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30121', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30122', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30123', N'Gorgon''s Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'17', N'100', N'0', N'0', N'0', N'1', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30124', N'Strong HP Potion', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30125', N'Powerful HP Potion', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'3730', N'616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30126', N'Holy HP Potion', N'2', N'0', N'0', N'13', N'1', N'65', N'100', N'0', N'0', N'0', N'1', N'5030', N'830')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30127', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'3', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30128', N'Estel''s MP Potion', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'230', N'38')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30129', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30130', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30131', N'Estel''s Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'17', N'100', N'0', N'0', N'0', N'1', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30132', N'Strong Mana Potion', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30133', N'Powerful Mana Potion', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'3730', N'616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30134', N'Holy Mana Potion', N'2', N'0', N'0', N'13', N'1', N'65', N'100', N'0', N'0', N'0', N'1', N'5030', N'830')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30136', N'Delicious Rat Dish', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30138', N'Soul Collector', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30139', N'Joheim''s Special Sauce', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30140', N'Clown Mushroom Soup', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30141', N'Hard Boiled Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30142', N'Fried Clown Mushroom', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30143', N'Buckthorn Leaf Soup', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30144', N'Buckthorn Leaf Tea', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30145', N'Buckthorn Leaf Cookie', N'2', N'0', N'0', N'13', N'1', N'14', N'100', N'0', N'0', N'0', N'1', N'400', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30146', N'Meat Steak', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30147', N'Meat Ball Sandwich', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30149', N'Fried Potato', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30150', N'Potato Soup', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30151', N'Skewered Potatoes', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30152', N'Peony Tea', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'1', N'1040', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30153', N'Peony Soup', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30154', N'Peony Cookie', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30155', N'Wrinkle Moss Tea', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30156', N'Wrinkle Moss Soup', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30158', N'Red Wine', N'2', N'0', N'0', N'13', N'1', N'8', N'100', N'0', N'0', N'0', N'1', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30159', N'Rose Wine', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'250', N'41')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30160', N'White Wine', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'320', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30161', N'Blue Mushroom Soup', N'2', N'0', N'0', N'13', N'1', N'18', N'100', N'0', N'0', N'0', N'1', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30162', N'Grilled Blue Mushroom', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30163', N'Fried Blue Mushroom', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30164', N'Fisherman Herb Soup', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30165', N'Fisherman Herb Tea', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30166', N'Fisherman Herb Cookie', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30167', N'Moss Soup', N'2', N'0', N'0', N'13', N'1', N'28', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30168', N'Moss Tea', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30169', N'Moss Salad', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1310', N'216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30170', N'Grilled Rat Meat', N'2', N'0', N'0', N'13', N'1', N'23', N'100', N'0', N'0', N'0', N'1', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30171', N'Rat Meat Soup', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'1', N'1040', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30172', N'Steamed Rat Meat', N'2', N'0', N'0', N'13', N'1', N'29', N'100', N'0', N'0', N'0', N'1', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30173', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30174', N'Weak HP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'190', N'31')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30175', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30176', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1560', N'257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30177', N'Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30178', N'Strong HP Potion', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'4080', N'673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30179', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30180', N'Weak Mana Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'190', N'31')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30181', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30182', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'1560', N'257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30183', N'Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30184', N'Strong Mana Potion', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'4080', N'673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30185', N'Decent HP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30186', N'High Quality HP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30187', N'Decent MP Potion (practice)', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30188', N'Great MP Potion (training)', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30189', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30190', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30191', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30192', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30193', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30194', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30195', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30196', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30197', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30198', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30199', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30200', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30201', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30202', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30203', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30204', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'6', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30205', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30206', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30207', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30208', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30209', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30210', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30211', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30212', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'16', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30213', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30214', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30215', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30216', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30217', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30218', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30219', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30220', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'26', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30221', N'Light Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30222', N'Darkness Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30223', N'Fire Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30224', N'Water Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30225', N'Earth Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30226', N'Wind Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30227', N'Poison Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30228', N'Lightning Resistance Potion', N'2', N'0', N'0', N'13', N'1', N'36', N'100', N'0', N'0', N'0', N'10', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30229', N'Boiled Egg', N'2', N'0', N'0', N'13', N'1', N'24', N'100', N'0', N'0', N'0', N'1', N'980', N'161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30230', N'Olive Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30231', N'Butter Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30232', N'Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30233', N'Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30234', N'Herb Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30235', N'Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30236', N'Wine Stew', N'2', N'0', N'0', N'13', N'1', N'7', N'100', N'0', N'0', N'0', N'1', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30237', N'Olive Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30238', N'Butter Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30239', N'Garlic Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30240', N'Cheese Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30241', N'Herb Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30242', N'Parsley Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30243', N'Wine Cream Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30244', N'Olive Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30245', N'Butter Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30246', N'Garlic Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30247', N'Cheese Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30248', N'Herb Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30249', N'Parsley Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30250', N'Wine Mushroom Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30251', N'Olive Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30252', N'Butter Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30253', N'Garlic Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30254', N'Cheese Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30255', N'Herb Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30256', N'Parsley Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30257', N'Wine Potato Stew', N'2', N'0', N'0', N'13', N'1', N'12', N'100', N'0', N'0', N'0', N'1', N'474', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30258', N'Olive Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30259', N'Butter Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30260', N'Garlic Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30261', N'Cheese Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30262', N'Herb Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30263', N'Parsley Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30264', N'Wine Seafood Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30265', N'Olive Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30266', N'Butter Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30267', N'Garlic Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30268', N'Cheese Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30269', N'Herb Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30270', N'Parsley Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30271', N'Wine Bacon Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30272', N'Olive Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30273', N'Butter Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30274', N'Garlic Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30275', N'Cheese Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30276', N'Herb Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30277', N'Parsley Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30278', N'Wine Curry Stew', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30279', N'Spicy Olive Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30280', N'Spicy Butter Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30281', N'Spicy Garlic Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30282', N'Spicy Cheese Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30283', N'Spicy Herb Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30284', N'Spicy Parsley Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30285', N'Spicy Wine Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30286', N'Olive Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30287', N'Butter Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30288', N'Garlic Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30289', N'Cheese Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30290', N'Herb Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30291', N'Parsley Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30292', N'Wine Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30293', N'Olive Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30294', N'Butter Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30295', N'Garlic Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30296', N'Cheese Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30297', N'Herb Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30298', N'Parsley Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30299', N'Wine Cream Lean Meat Stew', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30300', N'Olive Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30301', N'Butter Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30302', N'Garlic Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30303', N'Cheese Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30304', N'Herb Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30305', N'Parsley Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30306', N'Wine Broccoli Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30307', N'White Olive Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30308', N'White Butter Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30309', N'White Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30310', N'White Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30311', N'White Herb Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30312', N'White Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30313', N'White Wine Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30314', N'Olive Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30315', N'Butter Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30316', N'Garlic Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30317', N'Cheese Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30318', N'Herb Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30319', N'Parsley Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30320', N'Wine Chili Stew', N'2', N'0', N'0', N'13', N'1', N'37', N'100', N'0', N'0', N'0', N'1', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30321', N'Sound Stone Fragment', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30322', N'Golden Seal Bomb (Lv.1)', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30323', N'Golden Seal Bomb (Lv.10)', N'2', N'0', N'0', N'13', N'3', N'10', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30324', N'Golden Seal Bomb (Lv.20)', N'2', N'0', N'0', N'13', N'3', N'20', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30325', N'Golden Seal Bomb (Lv.30)', N'2', N'0', N'0', N'13', N'3', N'30', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30326', N'Golden Seal Flame Bomb (Lv.30)', N'2', N'0', N'0', N'13', N'3', N'30', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30327', N'Golden Seal Flame Bomb (Lv.40)', N'2', N'0', N'0', N'13', N'3', N'40', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30328', N'Goliath Gorilla Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30329', N'Cyborg Gorilla Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30330', N'Sinful Seraph Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30331', N'Skeleton Archer Spear', N'2', N'0', N'0', N'13', N'3', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30332', N'Olive Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30333', N'Butter Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30334', N'Garlic Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30335', N'Cheese Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30336', N'Herb Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30337', N'Parsley Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30338', N'Wine Sweet Pumpkin Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30339', N'Rosemary Olive Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30340', N'Rosemary Butter Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30341', N'Rosemary Garlic Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30342', N'Rosemary Cheese Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30343', N'Rosemary Herb Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30344', N'Rosemary Parsley Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30345', N'Rosemary Wine Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30346', N'Olive Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30347', N'Butter Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30348', N'Garlic Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30349', N'Cheese Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30350', N'Herb Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30351', N'Parsley Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30352', N'Wine Chicken Stew', N'2', N'0', N'0', N'13', N'1', N'44', N'100', N'0', N'0', N'0', N'1', N'3770', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30353', N'Olive Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30354', N'Butter Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30355', N'Garlic Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30356', N'Cheese Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30357', N'Herb Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30358', N'Parsley Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30359', N'Wine Sausage Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30360', N'Olive Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30361', N'Butter Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30362', N'Garlic Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30363', N'Cheese Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30364', N'Herb Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30365', N'Parsley Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30366', N'Wine Cream Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30367', N'Olive Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30368', N'Butter Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30369', N'Garlic Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30370', N'Cheese Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30371', N'Herb Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30372', N'Parsley Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30373', N'Wine Tomato Stew', N'2', N'0', N'0', N'13', N'1', N'54', N'100', N'0', N'0', N'0', N'1', N'4600', N'760')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30991', N'Butcher Morph potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30992', N'Eyebat Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30993', N'Gorilla Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30994', N'Wriggler Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30995', N'Chicken Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30996', N'Zombie Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30997', N'Mandragora Transform Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1180', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'30999', N'"Go', N'0', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31001', N'HP Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31002', N'HP Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31003', N'HP Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31004', N'HP Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31005', N'HP Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31006', N'HP Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31007', N'HP Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31008', N'HP Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31009', N'HP Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31010', N'HP Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31011', N'MP Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31012', N'MP Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31013', N'MP Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31014', N'MP Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31015', N'MP Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31016', N'MP Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31017', N'MP Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31018', N'MP Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31019', N'MP Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31020', N'MP Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31021', N'Skill Point Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31022', N'Skill Point Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31023', N'Skill Point Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31024', N'Skill Point Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31025', N'Skill Point Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31026', N'Skill Point Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31027', N'Skill Point Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31028', N'Skill Point Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31029', N'Skill Point Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31030', N'Skill Point Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31031', N'Physical Damage Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31032', N'Physical Damage Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31033', N'Physical Damage Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31034', N'Physical Damage Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31035', N'Physical Damage Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31036', N'Physical Damage Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31037', N'Physical Damage Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31038', N'Physical Damage Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31039', N'Physical Damage Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31040', N'Physical Damage Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31041', N'Physical Defense Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31042', N'Physical Defense Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31043', N'Physical Defense Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31044', N'Physical Defense Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31045', N'Physical Defense Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31046', N'Physical Defense Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31047', N'Physical Defense Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31048', N'Physical Defense Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31049', N'Physical Defense Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31050', N'Physical Defense Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31051', N'Magic Damage Up +5', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31052', N'Magic Damage Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31053', N'Magic Damage Up +15', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31054', N'Magic Damage Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31055', N'Magic Damage Up +25', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31056', N'Magic Damage Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31057', N'Magic Damage Up +35', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31058', N'Magic Damage Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31059', N'Magic Damage Up +45', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31060', N'Magic Damage Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31061', N'Magic Defense Up +10', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31062', N'Magic Defense Up +20', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31063', N'Magic Defense Up +30', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31064', N'Magic Defense Up +40', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31065', N'Magic Defense Up +50', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31066', N'Magic Defense Up +60', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31067', N'Magic Defense Up +70', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31068', N'Magic Defense Up +80', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31069', N'Magic Defense Up +90', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'31070', N'Magic Defense Up +100', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37001', N'Worst HP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37002', N'Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37003', N'Decent HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37004', N'Great HP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'660', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37005', N'Best HP Potion', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37006', N'Poor HP Elixir', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37007', N'Decent HP Elixir', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37008', N'Great HP Elixir', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37009', N'Best HP Elixir', N'2', N'0', N'0', N'13', N'1', N'40', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37010', N'Inferior HP Elixir', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37011', N'Standard HP Elixir', N'2', N'0', N'0', N'13', N'1', N'50', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37012', N'Improved HP Elixir', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37013', N'Superior HP Elixir', N'2', N'0', N'0', N'13', N'1', N'60', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'37101', N'Training Poor HP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38001', N'Worst MP Potion', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38002', N'Poor MP Potion', N'2', N'0', N'0', N'13', N'1', N'5', N'100', N'0', N'0', N'0', N'1', N'150', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38003', N'Decent MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38004', N'Great MP Potion', N'2', N'0', N'0', N'13', N'1', N'15', N'100', N'0', N'0', N'0', N'1', N'660', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38005', N'Best MP Potion', N'2', N'0', N'0', N'13', N'1', N'20', N'100', N'0', N'0', N'0', N'1', N'1030', N'171')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38006', N'Poor MP Elixir', N'2', N'0', N'0', N'13', N'1', N'25', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38007', N'Decent MP Elixir', N'2', N'0', N'0', N'13', N'1', N'30', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38008', N'Great MP Elixir', N'2', N'0', N'0', N'13', N'1', N'35', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38009', N'Best MP Elixir', N'2', N'0', N'0', N'13', N'1', N'40', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38010', N'Inferior Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'45', N'100', N'0', N'0', N'0', N'1', N'1460', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38011', N'Standard Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'50', N'100', N'0', N'0', N'0', N'1', N'1970', N'327')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38012', N'Improved Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'55', N'100', N'0', N'0', N'0', N'1', N'2550', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38013', N'Superior Mana Elixir', N'2', N'0', N'0', N'13', N'1', N'60', N'100', N'0', N'0', N'0', N'1', N'3210', N'534')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38101', N'Training Low MP Potion', N'2', N'0', N'0', N'13', N'1', N'10', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38102', N'Resurrect Party Member Scroll', N'2', N'0', N'0', N'39', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38103', N'Resurrect All Party Members Scroll', N'2', N'0', N'0', N'39', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'50000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38104', N'Alchemist''s Jar Lv. 20', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38105', N'Alchemist''s Jar Lv. 30', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38106', N'Alchemist''s Jar Lv. 40', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38107', N'Alchemist''s Jar Lv. 45', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38108', N'Alchemist''s Jar Lv. 50', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38109', N'Alchemist''s Jar Lv. 55', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38110', N'Alchemist''s Jar Lv. 60', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38111', N'Magic Chest of Change Lv. 20', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38112', N'Magic Chest of Change Lv. 30', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38113', N'Magic Chest of Change Lv. 40', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38114', N'Magic Chest of Change Lv. 45', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38115', N'Magic Chest of Change Lv. 50', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38116', N'Magic Chest of Change Lv. 55', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'38117', N'Magic Chest of Change Lv. 60', N'1', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40001', N'Fang', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40002', N'Fish Soldier''s Scales', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40003', N'Blue Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40004', N'Yellow Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40005', N'Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40006', N'Father William''s Moonshine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40007', N'Arrowhead', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40008', N'Murella''s Son''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40009', N'Georg''s Family Treasure', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40010', N'Pouch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40011', N'Mrs. Winger''s Family Treasure', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40012', N'Canal Pass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40013', N'Doll Making Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40014', N'Suspicious Symbol', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40015', N'Militia Member Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40016', N'Mayor''s Secret Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40017', N'Voucher', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40018', N'Damaged Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40019', N'Repaired Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40020', N'Jewel Studded Steel Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40021', N'Steel Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40022', N'Canal Key 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40023', N'Right Door of Hall 1F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40024', N'Left Door of Hall 1F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40025', N'Unused', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40026', N'Canal Key 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40027', N'Training Hall Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40028', N'Poorly Made Cannon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40029', N'Eyebat Wing', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40030', N'Spirit Stone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40031', N'Nadia''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40032', N'Coin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40033', N'Bone Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40034', N'Bone Collector''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40035', N'Skeleton''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40036', N'Skeleton Soldier''s Equipment Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40037', N'Harvest Festival Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40038', N'Harvest Festival Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40039', N'Grindstone Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40040', N'Iron Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40041', N'Lost Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40042', N'Lantern Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40043', N'Skeleton''s Finger Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40044', N'Skeleton''s Clean Molar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40045', N'Skeleton Lancer''s Spear Pole', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40046', N'Unknown Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40047', N'Icon_16recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40048', N'Icon_23recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40049', N'Icon_32recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40050', N'Icon-40recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40051', N'Hardcover', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40052', N'Training Hall Key Free Pass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40053', N'Training Hall Key Flier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40054', N'Rosemary''s Royal Recipe Page 16', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40055', N'Rosemary''s Royal Recipe Page 23', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40056', N'Rosemary''s Royal Recipe Page 32', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40057', N'Rosemary''s Royal Recipe Page 40', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40058', N'Book of Death', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40059', N'Book Found in the Library', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40060', N'Training Hall Graduation Certificate', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40061', N'Record: Training Hall Cleared in 15 min', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40062', N'Record: Training Hall Cleared in 12 min', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40063', N'Sealed Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40064', N'Order from Home Country', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40065', N'Mysterious Talisman', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40066', N'Mysterious Object', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40067', N'Poison''s Library Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'55', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40068', N'Library Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40069', N'Silver Utensil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40070', N'Fresh Apples', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40071', N'Damaged Kitchen Knife', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40072', N'Frighteningly Sharp Kitchen Knife', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40073', N'Fake Butcher Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40074', N'3rd Joint of Lobster''s Left Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40075', N'Tourmaline Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40076', N'Tantalus Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40077', N'Old Cheese', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40078', N'Wood Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40079', N'Hard Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40080', N'Nitroglycerine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40081', N'Dead Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40082', N'Butcher Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40083', N'Evil Divination for Fun and Profit Book 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40084', N'Evil Divination for Fun and Profit Book 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40085', N'Evil Divination for Fun and Profit Book 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40086', N'Nomi Nomi''s Stilt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40087', N'Nomi Nomi''s Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40089', N'Red Skeleton Soldier''s Eye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40090', N'Maid Apron', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40091', N'Nomi Nomi Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40092', N'Sexy Haken Hind Legs', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40093', N'Mousetrap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40094', N'Fire Sorcerer''s Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40095', N'Fire Sorcerer''s Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40096', N'Fire Sorcerer''s Hot Skirt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40097', N'Maid''s Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40098', N'Maid''s Shoes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40099', N'Mole Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40100', N'Perm Conditioner', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40101', N'Hair Straightener', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40102', N'Hair Dye Solution', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40103', N'Damaged Gearbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40104', N'Repaired Gearbox ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40106', N'Raw Chicken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40107', N'Boiled Chicken with Ginseng', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40108', N'Great Sorcerer''s Great Magic Book ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40109', N'Golden Gear Small', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40110', N'Unreturned Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40111', N'Book of Knowledge', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40112', N'Magic Fingerprint', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40113', N'Cardboard Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40114', N'Lost Page 15', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40115', N'Lost Page 18', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40116', N'Lost Page 20', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40117', N'Skeleton Soldier''s Challenge Request', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40118', N'Ignoble Challenge Request', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40119', N'Scientist''s Afro Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40120', N'Ursula''s Tear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40121', N'Haken Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40122', N'Snake Head', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40123', N'A Letter for Poison', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40124', N'Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40125', N'Silver Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40126', N'Bronze Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40127', N'Tool Set', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40128', N'Secret Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40129', N'Non-melting Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40130', N'Jewel Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40131', N'Left over candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40132', N'Tough Seaweed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40133', N'Haken''s Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40134', N'Tree thorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40136', N'Hard Marbes bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40137', N'Tantalus Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40138', N'Doll Making Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40139', N'Haken''s Vinyl', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40140', N'Zombie Eyeball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40141', N'Snake Oil', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40142', N'Ceramic Vase', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40143', N'Water Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40144', N'Soap', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40145', N'Bath melt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40146', N'Fresh Water', N'4', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40147', N'Marbes'' ax blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40148', N'Red Fruit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40150', N'Angolier''s Down Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40151', N'Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40152', N'Contaminated Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40153', N'Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40154', N'Vapor Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40155', N'Haken''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40156', N'Cursed Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40157', N'Pieces of Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40159', N'Tamla', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40160', N'Cursed Glove''s Arm', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40162', N'Red Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40163', N'Hard Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40164', N'Powerful Forbidden Potion', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40165', N'Empty Pouch', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40166', N'Full Bucket', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40167', N'Empty Bucket', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40168', N'Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40169', N'Rejoin Command', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40170', N'Disarming equipment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40171', N'Full-strength bleach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40172', N'Breaking Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40173', N'Broach', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40174', N'Mirror Fragment', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40175', N'Piece of Summoner''s Robe', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40177', N'Italian Towel', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40178', N'Haken Feet', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40179', N'Weak Bone', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40180', N'Snake Dog', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40181', N'Monster Plant Blood', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40182', N'Magical Shield ', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40183', N'Water Plant', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40184', N'Gina''s Letter', N'4', N'0', N'0', N'15', N'0', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40185', N'Dog Tag Route ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40186', N'Hourglass Route', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40187', N'Labyrinth Escape Route', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40188', N'Annex Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'40189', N'Warehouse Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41113', N'Giant Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41114', N'Crimson Gloves'' Parasite', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41115', N'Balloon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41116', N'Normal Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41117', N'Ugly Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41118', N'Swimming Goggles', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41119', N'Raw Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41120', N'Boiled Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41121', N'Charcoal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41122', N'Water Collector', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41123', N'Filter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41124', N'Golden Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41127', N'Crimson Gloves'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41128', N'High Quality Bandage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41129', N'Axe Handle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41130', N'Latch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41131', N'Clock''s Minute Hand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41132', N'Clock''s Second Hand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41133', N'Clock''s Pendulum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41134', N'Bronze Skull Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41135', N'Spare Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41136', N'Gloves'' Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41137', N'Angolier''s Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41138', N'Missing Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41139', N'Super Giant Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41140', N'Library Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41141', N'Collapsed Halls Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41142', N'Guest Villa Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41143', N'Vivarium Portal Scroll', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41144', N'Fish Archer''s Bow', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41145', N'Wine Bottle', N'4', N'0', N'0', N'90', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41146', N'Armored Butcher''s Gauntlet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41147', N'Cork', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41148', N'Past Record of Curtis Castle (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41149', N'Past Record of Curtis Castle (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41150', N'Past Record of Curtis Castle (3)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41151', N'Rotten Milk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41152', N'Broken Umbrella', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41153', N'Soybean Paste', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41154', N'Maple Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41155', N'Old Candlestick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41156', N'Red Chili Powder', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41157', N'Vinegar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41158', N'Starch Syrup', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41159', N'Garden Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41160', N'Beef (600g)', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41161', N'Librarian''s Diary (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41162', N'Librarian''s Diary (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41163', N'Chili Bean Paste', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41164', N'Giant Cannon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41165', N'Box Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41166', N'Rusty Mechanic Device II', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41167', N'Rusty Mechanic Device III', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41168', N'Poison''s Dress', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41169', N'Cataphract''s Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41170', N'Dewey Decimator''s Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41171', N'Joheim''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41172', N'Estel''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41173', N'Gorgon''s Note', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41174', N'Do it in a Week Blah Blah...', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41175', N'Chick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41176', N'Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41177', N'Bounced Check of Defeat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41178', N'Poison''s Order Form', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41179', N'Suspicious Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41180', N'Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41181', N'Diver''s Montage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41182', N'Diving Suit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41183', N'Expert Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41184', N'Super Genius Female Diver Service Coupon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41185', N'Gorilla''s fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41186', N'Training Voucher', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41187', N'Crazy Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41188', N'Baldness Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41189', N'Poison Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41190', N'Firefly', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41191', N'Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41192', N'Earthworm', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41193', N'Doggy Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41194', N'Four-Leaf Clover', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41195', N'Carrot', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41196', N'Spinach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41197', N'Sesame Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'4000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41198', N'Grasshopper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'55', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41199', N'Sow Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'22', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41200', N'Poison Grasshopper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41201', N'Cockroach', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'11', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41202', N'Helmet Bug', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'54')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41203', N'Stag Beetle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41204', N'Long-Horned Beetle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41205', N'Animal''s face', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41206', N'Acorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41207', N'Purple Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41208', N'Red Rose', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41209', N'Yellow Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41210', N'Orange Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41211', N'Red Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41212', N'Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41214', N'Wide Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41215', N'Painkiller Herb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41216', N'Tree Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41217', N'Tough Gorilla Skin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41218', N'Soft Gorilla Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41219', N'Smelly Gorilla Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41220', N'Magical Soil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41221', N'Photograph of Memories', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41222', N'Bug Catcher Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41224', N'Tasty Lunchbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41225', N'Empty Lunchbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41226', N'Golden Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41227', N'Sweet Potato Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41228', N'Perfect Seed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41229', N'Supplies', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41230', N'Mysterious Pollen ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41231', N'Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41232', N'Ballista Arrow', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41233', N'Power Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41234', N'Energy Accelerator', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41235', N'Scarlet Buff Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41236', N'Experimental Toolbox', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41237', N'Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41238', N'Pink Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41239', N'Weak Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41240', N'Green Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41241', N'Alchemy Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41242', N'Torn Alchemy Diary Page 192', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41243', N'Torn Alchemy Diary Page 193', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41244', N'Torn Alchemy Diary Page 194', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41245', N'Torn Alchemy Diary Page 195', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41246', N'Mercury', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41247', N'Antion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41248', N'Bone Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41249', N'Mixed Gold Materials', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41250', N'Green Frog Hearts that are Still Beating (3)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41251', N'Female Hair Strands (2)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41252', N'Black Roses (4)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41253', N'Claw Containing the Hooting Sound of an Owl (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41254', N'Ten Year Old Toad Breath (1)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41255', N'100 Year Old Clear Strained Rice Wine with Little Bit of Fat and Soy Sauce', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41256', N'Ornament Containing a Soul (Buff)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41257', N'Normal Mirror', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41258', N'Salt of Truth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41259', N'Gold Glue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41261', N'Duck Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41262', N'Deliciously Cooked Duck', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41263', N'Coal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41264', N'Broom Missing Some Teeth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41265', N'Bottle with Broken Neck', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41266', N'Tattered Silk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41267', N'Indian Curry Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41269', N'Gold', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41270', N'Cipher''s Research Journal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41271', N'Monster DNA', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41272', N'Erlenmeyer Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41273', N'Bipolar Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41274', N'White Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41275', N'Black Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41276', N'Nightglow Cobweb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41277', N'Antidote Ingredients', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41278', N'Spider Lady''s Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41280', N'Bone Butcher''s Love Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41281', N'Spider Lady''s Leg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41282', N'Zombie Scientist''s Refusal Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41283', N'Hair Dye Reagent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41284', N'Straighten Reagent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41288', N'Sweet Moodie', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41289', N'Sour Lemon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41290', N'Fresh Raw Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41291', N'Fungus Cheese', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41292', N'Dry Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41293', N'Seraph Meat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41294', N'Soldier Hat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41295', N'Soldier''s Pants', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41296', N'Solder''s Weapon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41298', N'Poisonous Plant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41299', N'Container Filled with Poisonous Plants', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41300', N'Doll Making Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41301', N'Moldy Bread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41302', N'Shed Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41303', N'Sweet Fruit Tart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41304', N'Hard Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41305', N'Large Leaf', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41306', N'Long Chinese Holly', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41307', N'Brand''s Log Vol. 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41308', N'Brand''s Personal Notes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41309', N'Brand''s Log Vol. 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41310', N'Brand''s Log Vol. 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41311', N'Purple Potion Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41312', N'Blue Medicine Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41313', N'Red Vial', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41314', N'Undia''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41315', N'Electric Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41316', N'Nomi Nomi Leg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41317', N'Thing Skin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41318', N'Clockwork', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41319', N'Outer Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41320', N'Nomi Nomi Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41321', N'Prison''s Ancient Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41322', N'Old Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41323', N'Steed Succu Cubic', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41324', N'Equipment Bag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41325', N'Magic Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41326', N'Blood Soaked Handkerchief', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41327', N'Zombie Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41328', N'Pink Shoe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41329', N'Candle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41330', N'Iron Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41331', N'Berial''s Wings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41332', N'Dark Red Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41333', N'Tied Up Soldier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41334', N'Cataphract''s Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41335', N'Hourglass', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41336', N'Doomsday Clock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41337', N'Ghost''s Wine Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41338', N'Rat Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41339', N'Cursed Cataphract Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41340', N'Weapon Craft Directions (100)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41341', N'Silky Smooth Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41342', N'Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41343', N'Explosive Cocktail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41344', N'Cinnamon', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41345', N'Oregano', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41346', N'Maid''s Upper Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41347', N'Maid''s Lower Garment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41348', N'Giant Iron Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'4500', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41349', N'Orgeous'' Paperweight 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41350', N'Orgeous'' Paperweight 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41351', N'Orgeous'' Paperweight 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41352', N'Orgeous'' Magic Mirror', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41353', N'Tiara of Corrupt Souls', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41354', N'Zordic''s Glasses', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41355', N'Nadia''s Memo', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41356', N'Missing Soldier''s Dog Tag 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41357', N'Missing Soldier''s Dog Tag 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41358', N'Missing Soldier''s Dog Tag 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41359', N'Hair with Soul', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41360', N'Medal of Glory', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41361', N'Small Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41362', N'Medium Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41363', N'Large Gear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41364', N'Duster', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41365', N'Stick with a Good Grip', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41366', N'Gorgon''s Emergency Money', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41367', N'Training Hall 10F Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41368', N'Historic Record 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41369', N'Historic Record 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41370', N'Historic Record 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41371', N'Pierre''s Scattered Bones', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41372', N'Fragment of Pamela', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41373', N'Pamela''s Crushed Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41374', N'Pamela''s Repaired Parts', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41375', N'Pamela''s Repaired Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41376', N'Thingy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41377', N'Translated Training Hall Record', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41378', N'Clockmaker''s Clue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41379', N'Past Record 6', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41380', N'Pamela''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41381', N'Minotauros Whiskers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41382', N'Angolier''s Eyelash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41383', N'Needler''s Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41384', N'Large Cardboard Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41385', N'Strawberry Milk Cow Box Costume', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41386', N'Seraph Shoulder Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41387', N'Seraph Chest Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41388', N'Seraph Leg Armor', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41389', N'Yellow Skull Key', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41390', N'Book of Lamentation', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41391', N'Treasure Map', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41392', N'Teddy Bear Juda', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41393', N'Goldfish', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41394', N'Engagement Ring', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41395', N'Lyrics for Ursula', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41396', N'Etin''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41397', N'Bath Herb', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41398', N'Bath Towel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41399', N'Chewed and Discarded Gum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41400', N'Nail Clipper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41401', N'Disposable Shampoo', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41402', N'Fish Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41403', N'Lightning Wand', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41404', N'Nadia''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41405', N'Tracy''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41406', N'Patricia''s Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41407', N'Really Delicious Looking Bone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41408', N'Usable Pipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41409', N'Untuned Flute', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41410', N'Snake Charming Flute', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41411', N'Bounced Check of Death', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41412', N'Fish Officer''s Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41413', N'Empty Survey Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41414', N'Straw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41415', N'Bone Collector''s Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41416', N'Bone Collector''s Spine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41417', N'Gorilla Hair Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41418', N'Lift Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41419', N'Lift Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41420', N'Lift Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41421', N'Empty Bowl', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41422', N'Dumpling Ramen', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41423', N'Thing''s Leather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41424', N'Researcher''s Note 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41425', N'Researcher''s Note 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41426', N'Researcher''s Note 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41427', N'Experimental Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41428', N'Graduated Cylinder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41429', N'Experimental Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41430', N'Small Clean Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41431', N'Medium Clean Beaker', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41432', N'Mecha Gorilla''s Part 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41433', N'Mecha Gorilla''s Part 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41434', N'Mecha Gorilla''s Part 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41435', N'Other World''s Passport', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41436', N'Dmitry''s Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41437', N'Dmitry''s Research Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41438', N'Dmitry''s Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41439', N'Nepenthes Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41440', N'Black Gorilla''s Coarse Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41441', N'Black Gorilla''s Curly Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41442', N'Black Gorilla''s Thin Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41443', N'Red Gorilla''s Very Long Eyelash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41444', N'Red Gorilla''s Long Chest Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41445', N'Suspicious Black Gorilla''s Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41446', N'Latest Fashion Magazine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41447', N'Nepenthes Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41448', N'Poorly Made Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41449', N'Bald Gorilla''s DNA', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41450', N'Helm''s Wings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41451', N'Nepenthes Thorn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41452', N'Goliath Gorilla''s Horn', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41453', N'Smooth Gorilla Fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41454', N'Red Head Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41455', N'Resurrection Potion for Animals', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41456', N'Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41457', N'Herbicide Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41458', N'Herbicide', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41459', N'Certificate of Proof of Being from Other World', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41460', N'Bone Collector''s Skull', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41461', N'Introduction to Alchemy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41462', N'Bronze', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41463', N'Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41464', N'Yellow Paint', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41465', N'Burnt Black Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41466', N'Gold Bar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41467', N'Damaged Chisel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41468', N'Chisel', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41469', N'Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41470', N'Copy of the Ten Commandments', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41471', N'Gigantic Nepenthes Seed', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41472', N'Bottle of Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41473', N'Milk', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41474', N'Cheeseburger', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41475', N'Growth Hormone Potion', N'4', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41476', N'Unidentified Flower', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41477', N'Unidentified Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41478', N'Good Looking Wig', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41479', N'Hair Restorer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41480', N'Onion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41481', N'Black Gorilla''s Iron Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41482', N'Dead Body of Teenage Nepenthes', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41483', N'Upgrade Project Document 1', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41484', N'Upgrade Project Document 2', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41485', N'Upgrade Project Document 3', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41486', N'Red Crystal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41487', N'Blue Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41488', N'Green Syringe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41489', N'Soldiers'' Blood Samples', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41490', N'Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41491', N'Spider Camouflage Suit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41492', N'Well Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41493', N'Whiskey', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41494', N'Upgrade Catalyst', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41495', N'Ellagore Drive', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41496', N'Antipyretic', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41497', N'Sand Golem''s Sand Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41498', N'Rusty Lock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41499', N'Guard''s Heritage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41500', N'Mr. Heo''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41501', N'Mandragora with a Nice Voice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41502', N'Ginseng', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41503', N'Ginseng Porridge', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41504', N'Chick Grave Number Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41505', N'Zombie Chick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41506', N'Coffee Beans', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41507', N'Baked Beans', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41508', N'Espresso', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41509', N'Bread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41510', N'Diaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41511', N'Sandpaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41512', N'Bread Soaked in Tears', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41513', N'Wet Diaper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41514', N'Sandpaper of Bloody Tears', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41515', N'Clergyman''s Collar', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41516', N'Nomi Nomi Commandments', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41517', N'Personality Emulsifier', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41518', N'Potato Money', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41519', N'Ink', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41520', N'Left Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41521', N'Center Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41522', N'Right Incinerator Ash', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41523', N'Researcher''s Document', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41524', N'Researcher''s Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41525', N'Researcher''s Record', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41526', N'Lab Plug', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41527', N'Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41528', N'High Molar Acid', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41529', N'Vending Machine Coin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41530', N'Birthday Gift', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41531', N'Elite Angolier''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41532', N'Prison Key 1', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41533', N'Prison Key 2', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41534', N'Tombstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41535', N'Growth Hormone Releaser Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41536', N'Massive Cheeseburger Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41537', N'Ginseng Porridge Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41538', N'Hair Restorer Recipe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41539', N'Empty Power Cell', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41540', N'Charged Power Cell', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41541', N'Howard''s Note', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41542', N'Venus F', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41543', N'Zeus D', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41544', N'Refrigerant Flask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41545', N'Undea''s Tissue Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41546', N'Phenol', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41547', N'Starch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41548', N'Citric Acid', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41549', N'Multi Vitamin', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41550', N'Iron Content', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41551', N'Green Insignia', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41552', N'Sock Puppet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41553', N'Dead Man''s Fragrance', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41554', N'Thick Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41555', N'Dried Thick Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41556', N'Suspicious Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41557', N'Uniform Order Form', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41558', N'Poison: Birth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41559', N'Poison: Childhood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41560', N'Poison: Trials', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41561', N'Poison: Tribulations', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41562', N'Poison: Resurrection', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41563', N'Poison: Current', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41564', N'Poison: Memoire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41565', N'Empty Bottle', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41566', N'Full Bottle', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41567', N'Chick Doll', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41568', N'Prison Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41569', N'Tyrant''s Axe', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41570', N'Zombie Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41571', N'Sand Ball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41572', N'Fingernail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41573', N'Scientist Lab Coat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41574', N'Gift Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41575', N'Medium Piece A', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41576', N'Medium Piece B', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41577', N'Medium Piece C', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41578', N'Nepenthes Flower Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41579', N'Torn Paper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41580', N'Pagan Mage''s Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41581', N'Axe Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41582', N'100 Ton Hammer', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41583', N'Prison Diary', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41584', N'Sand Golem''s Sand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41585', N'Unidentified Petal', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41586', N'Unidentified Fruit', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41587', N'Unidentified Tree Bark', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41588', N'Unidentified Stem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41589', N'Unidentified Bud', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41590', N'Unidentified Branch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41591', N'Unidentified Seed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41592', N'Unidentified Sap', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41593', N'Fancy Flower Petals', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41594', N'Nepenthes Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41595', N'Growth Accelerator', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41596', N'Nepenthes Manure', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41597', N'Wood Powder', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41598', N'Sand Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41599', N'Essential Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41600', N'Aquarium Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41601', N'Audrey', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41602', N'Adrian ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41603', N'Timothy ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41604', N'Audrey Dressed', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41605', N'Adrian Dressed ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41606', N'Crossdressed Timothy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41607', N'Nepenthes with Leaves', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41608', N'Immature Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41609', N'Adult Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41610', N'Large Egg', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41611', N'Growth Steriods', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41612', N'Boiled Egg', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41613', N'Newborn Chick', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41614', N'Immature Chicken''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41615', N'Rooster''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41616', N'Diva Mandragora', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41617', N'Zombie Baby Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41618', N'Zombie Child Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41619', N'Zombie Teen Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41620', N'Zombie Nepenthes'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41621', N'Zombie Nepenthes'' Urn', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41622', N'Nepenthes Manure', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41623', N'Minotauros Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41624', N'Massive Mole Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41625', N'Massive Mole Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41626', N'Giant Sandworm Eyeball ', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41627', N'Colorful Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41628', N'Box Tape', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41629', N'Box with Legs', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41630', N'Box with Legs'' Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41631', N'Box Cat''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41632', N'Box Bird''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41633', N'Box Tank''s Soul', N'2', N'2', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41634', N'Torn Research Documents', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41635', N'Clean Lab Coat', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41636', N'Snapped Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41637', N'Very Rough Hair', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41638', N'Red Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41639', N'Coarse Whiskers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41640', N'Dense Tail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41641', N'Fraction of Faded Gem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41642', N'Large Sword Girl Pet', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41643', N'Large Sword Girl Pet 2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41644', N'Moonstone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41645', N'Emerald Gemstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41646', N'Amethyst Gemstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41647', N'Twisted Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41648', N'Heavy Bolts', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41649', N'Lubricant', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41650', N'Metal Saw File', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41651', N'Garden Key', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41652', N'Purple Mazerock', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41653', N'Box of Time and Space', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41654', N'Mysterious Mazesand', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41655', N'Magic Orb', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41656', N'Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41657', N'Mysterious Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41658', N'Magic Mysterious Mazestone', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41659', N'Unoa''s Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41660', N'Sesame Sauce', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41661', N'Pine Needles', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41662', N'Purple Sweet Potato Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41663', N'Sweet Pumpkin Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41664', N'Rice Flour', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41665', N'Water', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41666', N'Rice Flour Dough', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41667', N'Dragonfish Claw', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41668', N'Wrinkled Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41669', N'Cracked Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41670', N'Stick', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41671', N'Bent Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41672', N'Joker Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41673', N'Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41674', N'Gargoyle''s Wing', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41675', N'Chimera''s Tentacle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41676', N'Tough Feathers', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41677', N'Soil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41678', N'Tombstone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41679', N'Soft Fur', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41680', N'Scrap of Soft Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41681', N'Scrap of Red Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41682', N'Baron''s Twilight Cloak', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41683', N'Fine Feather Fan', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41684', N'Tail Spear', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41685', N'Loose Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41686', N'Ripped Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41687', N'Ripped Felt', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41688', N'Magic Crystal Shard', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41689', N'Magical Gemstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41690', N'Doll Clothing Fabric', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41691', N'Doll Clothing Made by Gina', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41692', N'Chunk of Iron', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41693', N'Hard Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41694', N'Thick Wire', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41695', N'Curtis Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41696', N'Curtis Crest', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41697', N'Joker Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41698', N'Duke Gerald''s Blood Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41699', N'Chimera''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41700', N'Chimera''s Venom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41701', N'Grave Keeper''s Lamp', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41702', N'Sandbag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41703', N'Experimental Blood Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41704', N'Powerless Gemstone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41705', N'Needle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41706', N'Thick Thread', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41707', N'Cracked Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41708', N'Scrap of Oily Red Cloth', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41709', N'Rabbit Ears', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41710', N'Raccoon Tail', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41711', N'Tiger Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41712', N'Tiger Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41713', N'Panda Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41714', N'Panda Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41715', N'Milk Cow Head', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41716', N'Milk Cow Body', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41717', N'Gem Sword', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41718', N'Spike Club', N'5', N'0', N'0', N'38', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41719', N'Pie Pumpkin', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41720', N'Cocoa Powder', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41721', N'Crushed Pecans', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41722', N'Sweet Apple', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41723', N'Spooky Flour', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41724', N'Spooky Egg', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41725', N'Spooky Dough', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41726', N'Undia''s Nail', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41727', N'Depleted Magic Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41728', N'Cracked Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41729', N'Shining Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41730', N'Sealed Third Piece of Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41731', N'Haken''s Webbed Feet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41732', N'Haken''s Back Scale', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41733', N'Haken''s Gill', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41734', N'Haken''s Eyeball', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41735', N'Third Piece of Thanatos'' Heart', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41736', N'Tough Leather of Anubis', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41737', N'Lantern Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41738', N'Head Wig for Gustav', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41739', N'White Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41740', N'Black Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41741', N'Mirror Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41742', N'Spell Pouch', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41743', N'Sturdy Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41744', N'Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41745', N'Piece of Rock', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41746', N'Glass Bottle made from Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41747', N'Glass Bottle made from Enchanted Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41748', N'Medusa''s Blood in the Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41749', N'Tears of Purgatory in the Glass Bottle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41750', N'Thick Gloves', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41751', N'Blood of Fallen Wizard', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41752', N'Eyeball of Gargolye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41753', N'Blood of Sparkle', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41754', N'Hard Tooth of Haken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41755', N'Gravekeeper''s Pile of Dust', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41756', N'Un-steady Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41757', N'Mysterious Potion', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41758', N'Haken Sorcerer''s Staff', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41759', N'Crisp Mane', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41760', N'Demon King''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41761', N'Wing of Bloog Serpent', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41762', N'Claw of Gargolye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41763', N'Malleable Statue Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41764', N'Homemade Pie for Unoa', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41765', N'Lump of Mud', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41766', N'Thick Sand', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41767', N'Glass Marble', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41768', N'Poison''s Creepy Letter', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41769', N'Brilliant Gem', N'4', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41770', N'Matured Dough', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41771', N'Freshly grind Flour', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41772', N'Warm Milk', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41773', N'Syrup', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41774', N'Chocolate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41775', N'Whipped Cream', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41776', N'Whipped Butter', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41777', N'Strawberry', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41778', N'Diopside Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41779', N'Chrysoberyl Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41780', N'Rhodonite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41781', N'Morganite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41782', N'Malachite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41783', N'Fluorite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41784', N'Calcite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2100', N'21')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41785', N'Blue Spinel Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2400', N'24')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41786', N'Moonstone Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'2700', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41787', N'Jadeite Piece', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41788', N'Rusty Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41789', N'Diopside', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'3000', N'3000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41790', N'Chrysoberyl', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'6000', N'6000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41791', N'Rhodonite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'9000', N'9000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41792', N'Morganite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'12000', N'12000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41793', N'Malachite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'15000', N'15000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41794', N'Fluorite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'18000', N'18000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41795', N'Calcite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'21000', N'21000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41796', N'Blue Spinel', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'24000', N'24000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41797', N'Moonstone', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'27000', N'27000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41798', N'Jadeite', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'30000', N'30000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41799', N'Voucher of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41800', N'Blue Gem of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41801', N'Red Gem of Fate', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41802', N'Maple Syrup', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41803', N'Smooth Oil', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41804', N'3rd Spine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41805', N'Lotus Root', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41806', N'Silvervine Bark', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41807', N'Bok Choy', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41808', N'Bell Pepper', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41809', N'Fresh Carrot', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41810', N'Sweet Pumpkin Potato', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41811', N'Waterfall', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41812', N'Magic Marble', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41813', N'Raw Ruby', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41814', N'Raw Sapphire', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41815', N'Possession of Lord Curtis', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41816', N'Soft Hind Leg of Haken', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41817', N'Unknown Medicine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41818', N'Discarded Book', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41819', N'Thanatos''s Fourth Heart Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41820', N'Exhausted Ore Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41821', N'Clipped Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41822', N'Tombstone Fragment', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41823', N'Repair Parts (Small)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41824', N'Repair Parts (Medium)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41825', N'Exhausted Magic Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41826', N'Haken Residue', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41827', N'Reservoir Water Sample', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41828', N'Damaged Soldier''s Dog Tag', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41829', N'Soldier''s Belongings', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41830', N'Damaged Soldier''s Helmet', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41831', N'Gargoyle''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41832', N'Garuda''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41833', N'Garuda Mage''s Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41834', N'Soldier''s Antidote', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41835', N'Phantom Gem', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41836', N'Security Deposit Loan Document', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41837', N'Rough Diamond', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41838', N'Pink Stone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41839', N'Sharpening Stone', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41840', N'Forked Road Crystal Fragment', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41841', N'Garnet Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41842', N'Carnelian Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41843', N'Agate Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41844', N'Lapis Lazuli Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41845', N'Aquamarine Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'25')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41846', N'Inca Rose Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41847', N'Garnet', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'5000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41848', N'Carnelian', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41849', N'Agate', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'15000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41850', N'Lapis Lazuli', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41851', N'Aquamarine', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'25000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41852', N'Inca Rose', N'3', N'0', N'0', N'50', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'400000', N'30000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41853', N'Empty Bottle', N'3', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'41854', N'Bottle of Oil', N'3', N'0', N'0', N'36', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50001', N'Silver Bar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50002', N'Gold Bar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50004', N'Silver Bijou', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50005', N'Bandage', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50006', N'Leather Piece', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50007', N'Cloth Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'2')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50008', N'Blue Bijou', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50009', N'Dyes', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50010', N'Firewood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50011', N'Log', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50012', N'Flask', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50013', N'Iron Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50014', N'Triangular Iron Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50015', N'Oil Pouch', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50016', N'Cube', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50017', N'Skull Soldier''s Red Eye', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50018', N'Perfume Bottle', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50019', N'Fishy Perfume', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50020', N'Fish Soldier''s Sword Piece', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50021', N'Beast Claw', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50022', N'Gunpowder', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50023', N'Wiseman''s Stone', N'3', N'0', N'0', N'24', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50025', N'Iron', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50026', N'Iron Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50027', N'Welding Rod', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50028', N'Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50029', N'Glue', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50030', N'High Quality Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'26')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50031', N'Pattern', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'240', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50033', N'Skeleton Soldier''s Eye', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50034', N'Red Skeleton Soldier''s Necklace', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50035', N'Haken Trident', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50036', N'Butcher''s Metal Chain', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50037', N'Butcher''s Mask', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50038', N'Orb of Gluttony', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50039', N'Angolier''s Feather', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50040', N'Angolier''s Pendulum', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50041', N'Staff of Entrancement', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50042', N'Fabric Soaked in Blood', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50043', N'Nomi Nomi''s Blade', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50044', N'Rabbit Foot', N'4', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50046', N'Soul Reflector', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50047', N'Crushed Zirconium Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50048', N'White Paulowina Wood Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50049', N'Oriharcor Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50050', N'Mirror Piece of Other World', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50051', N'Talisman of Thoughts', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50052', N'Orb of Torture', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50053', N'Onyx of Blood', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50055', N'Faded Emblem of Loyalty', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50056', N'Royal Guard''s Necklace', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50057', N'Staff of Flame', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50058', N'Ifrit''s Fingernail', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50059', N'Staff of Ice', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50060', N'Blizzard Cloak', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50061', N'Angel''s Tear', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50062', N'Goggle Monster''s Spite', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50063', N'Black Angolier''s Feather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50064', N'Sky Hammer', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50065', N'Angry Tiara', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50066', N'Red Lion''s Mane', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50067', N'Studded Gloves', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50068', N'Cursed Horseshoe', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50069', N'Onyx of Ice', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50070', N'Wine Sapper', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50071', N'Old Book', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50101', N'Glowing Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50102', N'Pulsating Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'100', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50103', N'Strangely Warm Mushroom', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'15', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50104', N'Red Hook Full', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50105', N'Fish Paste Bait', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50106', N'Butcher''s Heart', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'10', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50200', N'The Eyes that Penetrate the Wine', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50201', N'Grape Juice', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50202', N'Real Dew', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'20', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50203', N'Bramble Wine', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'40', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50204', N'White Snake Wine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50205', N'830 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'30', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50206', N'829 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'50', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50207', N'828 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'60', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50208', N'827 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'90', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50209', N'826 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'150', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50210', N'825 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'180', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50211', N'824 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1080', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50212', N'823 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1200', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50213', N'822 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1440', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50214', N'821 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'1800', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50215', N'820 Chateau de la Rumaine', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'2400', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50216', N'Ocean Blood', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'2400', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50217', N'Bloody Abyss', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'3000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50218', N'Chablis Tiger Blood Made in 1000BC', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'5', N'4800', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50219', N'Blue Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50220', N'Red Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50221', N'White Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50222', N'Black Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50223', N'Green Crystal Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50224', N'Blue Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50225', N'Red Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50226', N'White Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50227', N'Black Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50228', N'Green Crystal', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50300', N'Monster Language Translator', N'3', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50301', N'Red Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50302', N'Blue Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50303', N'Yellow Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50304', N'Green Gem Socket', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50305', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50306', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50307', N'Polished Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50315', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50316', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50317', N'Polished Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50325', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50326', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50327', N'Polished Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50335', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50336', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50337', N'Polished Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50345', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50346', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50347', N'Glinting Red Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50355', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50356', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50357', N'Glinting Blue Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50365', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50366', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50367', N'Glinting Yellow Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50375', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50376', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50377', N'Glinting Green Gem', N'2', N'0', N'0', N'29', N'5', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50385', N'Pristine Red Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50404', N'Pristine Blue Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50405', N'Pristine Yellow Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50424', N'Pristine Green Gem', N'2', N'0', N'0', N'29', N'6', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50425', N'Colorless Socket Converter', N'2', N'2', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50426', N'Fishing Rod', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50427', N'Ancient Coin Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50428', N'Perm Solution', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50429', N'Hair Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50430', N'Dye Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50431', N'Conditioner', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50432', N'Fortune Coin', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'360', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50433', N'Green Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50434', N'Yellow Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50435', N'Blue Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50436', N'Red Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50437', N'Colorless Gem Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50438', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50439', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50440', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50441', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50442', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50443', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50444', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50445', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50446', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50447', N'Red Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50448', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50449', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50450', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50451', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50452', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50453', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50454', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50455', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50456', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50457', N'Blue Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50458', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50459', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50460', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50461', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50462', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50463', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50464', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50465', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50466', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50467', N'Yellow Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50468', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50469', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50470', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50471', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50472', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50473', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50474', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50475', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50476', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50477', N'Green Gem Piece', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50478', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50479', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50480', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50481', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50482', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50483', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50484', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50485', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50486', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50487', N'Cracked Red Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50488', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50489', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50490', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50491', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50492', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50493', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50494', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50495', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50496', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50497', N'Cracked Blue Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50498', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50499', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50500', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50501', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50502', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50503', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50504', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50505', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50506', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50507', N'Cracked Yellow Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50508', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'5', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50509', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'10', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50510', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'15', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50511', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'20', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50512', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'25', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50513', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'30', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50514', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'35', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50515', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'40', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50516', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'45', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50517', N'Cracked Green Gem', N'2', N'0', N'0', N'14', N'2', N'50', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50518', N'Cracked Grey Gem', N'2', N'0', N'0', N'29', N'2', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50991', N'Cracked Augment Pebble', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50992', N'Soft Augment Pebble', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50993', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50994', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'50997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51991', N'Cracked Augment Stone', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51992', N'Soft Augment Stone', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51993', N'Augment Stone', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51994', N'Hard Augment Stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52991', N'Cracked Augment Crystal', N'1', N'0', N'0', N'24', N'1', N'20', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52992', N'Soft Augment Crystal', N'1', N'0', N'0', N'24', N'1', N'30', N'100', N'0', N'0', N'3', N'1', N'320', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52993', N'Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'40', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52994', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52995', N'Superior Activation Stone', N'1', N'0', N'0', N'24', N'2', N'60', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52996', N'Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'45', N'100', N'0', N'0', N'3', N'1', N'2560', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52997', N'Hard Augment Pebble', N'1', N'0', N'0', N'24', N'2', N'55', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56001', N'Gloves'' Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56002', N'Armored Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56003', N'Boozatron''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56004', N'Hammer Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56005', N'Cursed Cataphract''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56006', N'Giant Mole''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56007', N'Dewey Decimator''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56008', N'Cataphract''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56009', N'Crimson Gloves'' Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56010', N'Minotauros Lord''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56011', N'Sinful Seraph''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56012', N'Massive Butcher''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56013', N'Haken Platina''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56014', N'Viper''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56015', N'Stone Golem''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56016', N'Massive Mole''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56017', N'Goliath Gorilla''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56018', N'Giant Rafflesia''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56019', N'Cyborg Gorilla''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56020', N'Sand Golem''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56021', N'Giant Sandworm''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56022', N'Spider Lady''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56023', N'Baron''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56024', N'Joker''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56025', N'Chimera''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56026', N'Conjugo''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56027', N'Dire Knight''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56028', N'Sparkle''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56029', N'Demon King''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56030', N'Mad Latiel''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56031', N'Gagarth''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56032', N'Aurosiac''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'56033', N'Silent Castiel''s Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57001', N'Glove''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57002', N'Armored Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57003', N'Boozatron''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57004', N'Hammer Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57005', N'Cursed Cataphract''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57006', N'Giant Mole''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57007', N'Dewey Decimator''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57008', N'Cataphract''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57009', N'Crimson Gloves'' Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57010', N'Minotauros Lord''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57011', N'Sinful Seraph''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57012', N'Massive Butcher''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57013', N'Haken Platina''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57014', N'Viper''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57015', N'Stone Golem''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57016', N'Massive Mole''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57017', N'Goliath Gorilla''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57018', N'Giant Rafflesia''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57019', N'Cyborg Gorilla''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57020', N'Sand Golem''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57021', N'Giant Sandworm''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57022', N'Spider Lady''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57023', N'Baron''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57024', N'Joker''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57025', N'Chimera''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57026', N'Conjugo''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57027', N'Dire Knight''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57028', N'Sparkle''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57029', N'Demon King''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57030', N'Mad Latiel''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57031', N'Gagarth''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57032', N'Aurosiac''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'57033', N'Silent Castiel''s Advanced Soul Piece', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59001', N'Clovis of Illusion', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59002', N'Clovis of Inferno', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59003', N'Clovis of Punishment', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59004', N'Clovis of Taboo', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59005', N'Clovis of Fissure', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2560', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59020', N'Clovis of the Altar', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'80000', N'8000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59021', N'Clovis of the Valley', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59022', N'Clovis of the Mist', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120000', N'12000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59023', N'Clovis of the Incinerator', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'80000', N'8000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59024', N'Clovis of the Ranch', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'10000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'59101', N'Single Entrance Ticket to the Toy Tower', N'3', N'0', N'0', N'25', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'50000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60001', N'Buckthorn Leaf Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60002', N'Clown Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60003', N'Tender Lean Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60004', N'Leftover Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60005', N'Banana', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60006', N'Small Potato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60007', N'Peony Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60008', N'Maple Sap', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60009', N'Cheap Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60010', N'Wrinkle Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60011', N'Maple Syrup', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60012', N'Blue Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'420', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60013', N'Sugar', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60014', N'Rum', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60015', N'Red Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60016', N'Peony', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60017', N'Fisherman Herb', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60018', N'Ancient Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60019', N'Fruit Extract', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60020', N'Edible Alcohol', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60021', N'Brewing Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60022', N'Distilled Water', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60023', N'Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60024', N'Yeast Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60025', N'Smoked Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60026', N'Smoked Turkey', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60027', N'Scale Bug Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60028', N'Big Scale Bug Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60029', N'Rat Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60030', N'Field Mouse Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60031', N'Bay Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60032', N'Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'300', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60033', N'Veggie Soup', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60034', N'Black Pepper', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60035', N'Natural Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60036', N'Whole Wheat Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60037', N'Fine Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60038', N'Enzyme', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60039', N'Natural Enzyme', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60040', N'Pickled Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60041', N'Black Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60042', N'Fig', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'720', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60043', N'Salted Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60044', N'Brandy', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'180', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60045', N'Tarragon', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60046', N'Salted Fish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'480', N'52')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60047', N'Scale Moss', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'780', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60048', N'Black Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60049', N'Starch Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60050', N'High Quality Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60051', N'Sweetener for Brewing', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60052', N'Herb Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60053', N'Fermented Grape Juice', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60054', N'High Quality Starch Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60055', N'Rock Salt', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60056', N'Dried Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'2')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60057', N'Tender Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'6')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60058', N'Lean Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60059', N'Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60060', N'Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60061', N'Garlic Sauce', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60062', N'Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60063', N'Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60064', N'Parsley Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60065', N'Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60066', N'Fresh Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60067', N'Butter Slices', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60068', N'Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60069', N'Cheese Slices', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60070', N'Fresh Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60071', N'Fresh Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60072', N'Fancy Old Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60073', N'Canned Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60074', N'Whipped Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60075', N'Organic Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60076', N'Aged Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60077', N'Dried Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60078', N'Dried Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60079', N'Aromatic Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'70', N'12')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60080', N'Cream Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60081', N'Mushroom', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60082', N'Whole Potato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60083', N'Seafood Sauce', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60084', N'Salted Bacon', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60085', N'Curry Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60086', N'Whole Black Pepper', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60087', N'Flour', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60088', N'Condensed Milk', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'80', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60089', N'Broccoli', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60090', N'White Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60091', N'Chili Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60092', N'Mysterious food additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60093', N'Pickled Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60094', N'Smooth Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60095', N'Spicy Garlic Powder', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60096', N'Smooth Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60097', N'Flavored Basil Leaf', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60098', N'Flavored Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60099', N'17-Year-Old Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60100', N'Sweet Pumpkin', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60101', N'Rosemary', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60102', N'Chicken Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60103', N'Ground Meat', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'140', N'23')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60104', N'Subtle Cooking Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'77')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60105', N'Crushed Olive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60106', N'Mature Butter', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60107', N'Crushed Garlic', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60108', N'Mature Cheese', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60109', N'Damp Basil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60110', N'Fresh Parsley', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60111', N'Tepid Wine', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60112', N'Sausage Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60113', N'Bramunez Cream', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60114', N'Slice Tomato', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60115', N'Mutton Piece', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'170', N'28')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'60116', N'Mysterious Food Additive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001', N'Worst Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002', N'Poor Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'264', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003', N'Decent Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'561', N'93')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004', N'Great Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1168', N'194')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005', N'Best Steel', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2409', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016', N'Worst Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017', N'Poor Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018', N'Decent Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'700', N'116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019', N'Great Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1459', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020', N'Best Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'3010', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022', N'Shiny Cobalt', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023', N'Shiny Mithril', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'3853', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024', N'Shiny Suri Fleece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5213', N'860')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025', N'Shiny Ertel', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026', N'Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027', N'Decent Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028', N'Great Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1500', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029', N'Best Corks', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030', N'Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031', N'Decent Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032', N'Great Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'800', N'88')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033', N'Best Accelerator', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1200', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034', N'Poor Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'20', N'3')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035', N'Moon Fragment', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'5')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036', N'Moon Gemstone ', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037', N'Moon Crystal ', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61140', N'Decent Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61141', N'Great Steel Oil', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61142', N'Poor Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143', N'Decent Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61144', N'Great Metal Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001', N'Worst Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'66', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002', N'Poor Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003', N'Decent Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'297', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004', N'Great Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'640', N'106')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005', N'Best Linen', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1353', N'225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011', N'Worst Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'86', N'14')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012', N'Poor Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013', N'Decent Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014', N'Great Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'799', N'133')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015', N'Best Silky Yarn', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1690', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022', N'Shiny Twine Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'506', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023', N'Shiny Silk Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1926', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024', N'Shiny Muslin Fabric ', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2093', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025', N'Shiny Herringbone Fabric', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026', N'Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027', N'Decent Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028', N'Great Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029', N'Best Dye', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030', N'Poor Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031', N'Decent Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032', N'Great Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033', N'Best Dye', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034', N'Poor Fabric Stiffener', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035', N'Decent Liquid Starch', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036', N'Great Fabric Stiffener', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001', N'Worst Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'66', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002', N'Poor Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'132', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003', N'Decent Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'297', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004', N'Great Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'640', N'106')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005', N'Best Carp Leather', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1353', N'225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011', N'Worst Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'86', N'14')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012', N'Poor Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'165', N'27')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013', N'Decent Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'370', N'61')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014', N'Great Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'799', N'133')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015', N'Best Beroa', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1690', N'281')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022', N'Shiny Hide Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'506', N'83')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023', N'Shiny Goat Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1926', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024', N'Shiny Swede Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2606', N'430')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025', N'Shiny Velour Leather', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026', N'Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027', N'Decent Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028', N'Great Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029', N'Best Fish Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030', N'Coarse Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031', N'Decent Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032', N'Great Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033', N'Best Composition', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034', N'Poor Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035', N'Fire Seed', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036', N'Fire Element Stone', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037', N'Fire Crystal', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054', N'Decent Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'30', N'4')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055', N'Great Shellac', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026', N'Normal Grade Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027', N'Decent Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028', N'Great Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029', N'Best Glue', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030', N'Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031', N'Decent Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032', N'Great Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033', N'Best Alloy Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'20000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034', N'Chain Strengthener ', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035', N'Wind Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036', N'Wind Gemstone', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2200', N'242')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037', N'Wind Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5500', N'605')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64054', N'Decent Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64055', N'Best Chain Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65026', N'Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65027', N'Decent Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'200', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65028', N'Great Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'400', N'44')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65029', N'Quality Metal Ingot', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'600', N'66')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65030', N'Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65031', N'Decent Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'5000', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65032', N'Great Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10000', N'1100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65033', N'Best Metal Additive', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'20000', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65034', N'Old Plate Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65035', N'Earth Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65036', N'Earth Gemstone', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'2200', N'242')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65037', N'Earth Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5500', N'605')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65054', N'Decent Plate Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'1000', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'65055', N'Great Chain Strengthener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'2000', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66001', N'Zircon Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66002', N'Onyx Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66003', N'Topaz Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66004', N'Amethyst Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66005', N'Garnet Ore', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66006', N'Zircon Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66007', N'Onyx Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66008', N'Topaz Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66009', N'Amethyst Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66010', N'Garnet Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66011', N'Zircon', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66012', N'Onyx', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66013', N'Topaz', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66014', N'Amethyst', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66015', N'Garnet', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66016', N'Splendid Zircon', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66017', N'Splendid Onyx', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66018', N'Splendid Topaz', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66019', N'Splendid Amethyst', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66020', N'Splendid Garnet', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66021', N'Shiny Zircon', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66022', N'Shiny Onyx', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66023', N'Shiny Topaz', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66024', N'Shiny Amethyst', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66025', N'Shiny Garnet ', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66026', N'Coarse Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66027', N'Mid Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66028', N'Great Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66029', N'Quality Abrasive', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66030', N'Coarse Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66031', N'Decent Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66032', N'Great Polisher', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66033', N'Best Polish', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66034', N'Jewel Hardener', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66035', N'Light Fragment', N'3', N'0', N'0', N'14', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66036', N'Light Ore', N'3', N'0', N'0', N'14', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66037', N'Light Crystal', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'120', N'13')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66038', N'Worst Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'150', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66039', N'Poor Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'450', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66040', N'Decent Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'900', N'99')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66041', N'Great Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'1800', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66042', N'Best Solvent', N'3', N'0', N'0', N'14', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'3600', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'66043', N'Mystical Fragment', N'3', N'0', N'0', N'36', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'3600', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67001', N'Icestone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67002', N'Flamestone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67003', N'Shadowstone Shard', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67004', N'Luminstone', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67005', N'Chipped Mystical Title Fragment', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67006', N'Chipped Fatal Blow Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67007', N'Chipped Fire Damage Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67008', N'Chipped Wave Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67009', N'Chipped Wind Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67010', N'Chipped Earth Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67011', N'Chipped Darkness Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67012', N'Chipped Light Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67013', N'Chipped Lightening Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'67014', N'Chipped Poisonous Title Fragment', N'3', N'0', N'0', N'19', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68001', N'Unbreakable Bone Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68002', N'Tree Spirit''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68003', N'Incomplete Ancient Spell', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68004', N'Specter''s Spell', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68011', N'Mystical Bone Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68012', N'Vindictive Spirit Piece of Catacomb', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68013', N'Gun''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68014', N'Bullet''s Soul Piece', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68015', N'Unknown Voucher Lv. 1', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68016', N'Unknown Voucher Lv. 2', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68017', N'Unknown Voucher Lv. 3', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68018', N'Unknown Voucher Lv. 4', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68019', N'Unknown Voucher Lv. 5', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68020', N'Unknown Voucher Lv. 6', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68021', N'Unknown Voucher Lv. 7', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68022', N'Unknown Voucher Lv. 8', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68023', N'Unknown Voucher Lv. 9', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68024', N'Unknown Voucher Lv. 10', N'3', N'0', N'0', N'14', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68115', N'Unknown Box Lv. 1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68116', N'Unknown Box Lv. 2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68117', N'Unknown Box Lv. 3', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68118', N'Unknown Box Lv. 4', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68119', N'Unknown Box Lv. 5', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68120', N'Unknown Box Lv. 6', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68121', N'Unknown Box Lv. 7', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68122', N'Unknown Box Lv. 8', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68123', N'Unknown Box Lv. 9', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68124', N'Unknown Box Lv. 10', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68125', N'Gem of the Barrier', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68126', N'Mysterious Gem', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'68127', N'Unknown Gem', N'3', N'0', N'0', N'14', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'500', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70001', N'Expand Warehouse by 4 Units', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002', N'Expand Warehouse by 4 Units', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003', N'Street Vendor Permit (1week)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70004', N'Street Vendor Permit (2weeks)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70005', N'Street Vendor Permit (4weeks)', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70006', N'100 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70007', N'200 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70008', N'400 Advertisement Coupon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70009', N'Basic Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'18', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70010', N'Basic Pants 1 [Frantz]', N'5', N'0', N'0', N'18', N'6', N'18', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70011', N'Basic Pants 2 [Frantz]', N'5', N'0', N'0', N'18', N'6', N'24', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70012', N'Aqua Vitae of Resurrection', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70013', N'Teddy Bear Body [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70014', N'Teddy Bear Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70015', N'Teddy Bear Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70016', N'Teddy Bear Head Hood [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70017', N'Teddy Bear Body [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70018', N'Teddy Bear Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70019', N'Teddy Bear Head Hood [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70020', N'Teddy Bear Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70021', N'Change Guild Icon', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70022', N'Dark Seal Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70023', N'Dark Seal Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70024', N'Dark Seal Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70025', N'Dark Seal Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70026', N'Dark Seal Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70027', N'Dark Seal Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70028', N'White Devil Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70029', N'White Devil Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70030', N'White Devil Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70031', N'White Devil Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70032', N'White Devil Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70033', N'White Devil Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70034', N'Blue Seal Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70035', N'Blue Seal Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70036', N'Blue Seal Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70037', N'Blue Seal Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70038', N'Blue Seal Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70039', N'Blue Seal Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70040', N'Red Formal Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70041', N'Red Formal Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70042', N'Red Formal Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70043', N'Red Formal Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70044', N'Red Formal Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70045', N'Red Formal Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70046', N'Swallowtail Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70047', N'Swallowtail Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70048', N'Swallowtail Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70049', N'Swallowtail Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70050', N'Swallowtail Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70051', N'Swallowtail Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70052', N'Hunter Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70053', N'Hunter Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70054', N'Hunter Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70055', N'Hunter Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70056', N'Hunter Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70057', N'Hunter Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70058', N'White Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70059', N'White Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70060', N'White Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70061', N'White Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70062', N'White Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70063', N'White Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70064', N'White Cowboy Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70065', N'Red Seal Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70066', N'Red Seal Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70067', N'Red Seal Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70068', N'Red Seal Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70069', N'Red Seal Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70070', N'Red Seal Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70071', N'Plaid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70072', N'Plaid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70073', N'Plaid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70074', N'Plaid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70075', N'Plaid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70076', N'Plaid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70077', N'Night Witch Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70078', N'Night Witch Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70079', N'Night Witch Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70080', N'Night Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70081', N'Night Witch Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70082', N'Night Witch Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70083', N'Plum Witch Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70084', N'Plum Witch Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70085', N'Plum Witch Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70086', N'Plum Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70087', N'Plum Witch Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70088', N'Plum Witch Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70089', N'Red Witch Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70090', N'Red Witch Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70091', N'Red Witch Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70092', N'Red Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70093', N'Red Witch Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70094', N'Red Witch Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70095', N'Red Spider Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70096', N'Red Spider Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70097', N'Red Spider Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70098', N'Red Spider Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70099', N'Red Spider Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70100', N'Red Spider Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70101', N'White Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70102', N'White Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70103', N'White Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70104', N'White Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70105', N'White Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70106', N'White Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70107', N'White Cowgirl Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70108', N'Brown Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70109', N'Brown Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70110', N'Brown Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70111', N'Brown Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70112', N'Brown Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70113', N'Brown Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70114', N'Hooligan Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70115', N'Hooligan Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70116', N'Hooligan Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70117', N'Hooligan Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70118', N'Hooligan Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70119', N'Hooligan Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70120', N'Bright Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70121', N'Bright Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70122', N'Bright Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70123', N'Bright Uniform Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70124', N'Bright Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70125', N'Bright Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70126', N'Rustic Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70127', N'Rustic Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70128', N'Rustic Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70129', N'Rustic Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70130', N'Rustic Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70131', N'Rustic Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70132', N'Dark Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70133', N'Dark Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70134', N'Dark Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70135', N'Dark Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70136', N'Dark Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70137', N'Dark Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70138', N'Conquest Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70139', N'Conquest Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70140', N'Conquest Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70141', N'Conquest Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70142', N'Conquest Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70143', N'Conquest Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70144', N'Brown Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70145', N'Hooligan Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70146', N'Bright Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70147', N'Rustic Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70148', N'Dark Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70149', N'Conquest Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70150', N'Basic Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70151', N'Basic Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70152', N'Basic Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70153', N'Basic Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70154', N'Basic Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70155', N'Basic Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70156', N'Basic Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70157', N'Basic Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70158', N'Basic Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70159', N'Basic Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70160', N'Basic Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70161', N'Basic Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70162', N'Basic Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70163', N'Basic Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70164', N'Basic Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70165', N'Basic Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70166', N'Basic Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70167', N'Basic Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70168', N'Basic Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70169', N'Teddy Bear Body [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70170', N'Teddy Bear Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70171', N'Teddy Bear Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70172', N'Teddy Bear Head Hood [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70173', N'Basic Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70174', N'Basic Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70175', N'Basic Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70176', N'Cat Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70177', N'Fly Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70178', N'Pig Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70179', N'Cat Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70180', N'Fly Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70181', N'Pig Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70182', N'Cat Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70183', N'Fly Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70184', N'Pig Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70185', N'Red Fox Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70186', N'Red Fox Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70187', N'Red Fox Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70188', N'Red Fox Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70189', N'Red Fox Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70190', N'Red Fox Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70191', N'White Blaze Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70192', N'White Blaze Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70193', N'White Blaze Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70194', N'White Blaze Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70195', N'White Blaze Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70196', N'White Sol Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70197', N'White Sol Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70198', N'White Sol Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70199', N'White Sol Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70200', N'White Sol Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70201', N'White Sol Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70202', N'White Sol Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70203', N'Golden Pattern Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70204', N'Golden Pattern Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70205', N'Golden Pattern Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70206', N'Golden Pattern Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70207', N'Golden Pattern Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70208', N'Golden Pattern Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70209', N'Black Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70210', N'Black Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70211', N'Black Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70212', N'Black Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70213', N'Black Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70214', N'Black Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70215', N'Pirate Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70216', N'Pirate Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70217', N'Pirate Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70218', N'Pirate Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70219', N'Pirate Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70220', N'Pirate Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70221', N'Pirate Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70222', N'Shark Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70223', N'Navy Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70224', N'Navy Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70225', N'Navy Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70226', N'Navy Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70227', N'Navy Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70228', N'Golden Pattern Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70229', N'Golden Pattern Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70230', N'Golden Pattern Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70231', N'Golden Pattern Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70232', N'Golden Pattern Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70233', N'Golden Pattern Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70234', N'Pink Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70235', N'Pink Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70236', N'Pink Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70237', N'Pink Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70238', N'Pink Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70239', N'Pink Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70240', N'Dark Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70241', N'Dark Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70242', N'Dark Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70243', N'Dark Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70244', N'Dark Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70245', N'Dark Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70246', N'Octopus Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70247', N'Pin-Striped Punk Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70248', N'Pin-Striped Punk Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70249', N'Pin-Striped Punk Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70250', N'Pin-Striped Punk Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70251', N'Pin-Striped Punk Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70252', N'Pin-Striped Punk Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70253', N'Pin-Striped Punk Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70254', N'Silver Sage Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70255', N'Silver Sage Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70256', N'Silver Sage Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70257', N'Silver Sage Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70258', N'Silver Sage Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70259', N'Silver Sage Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70260', N'Black Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70261', N'Black Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70262', N'Black Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70263', N'Black Leather Headband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70264', N'Black Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70265', N'Black Leather Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70266', N'Black Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70267', N'Pirate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70268', N'Pirate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70269', N'Pirate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70270', N'Pirate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70271', N'Pirate Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70272', N'Pirate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70273', N'Pirate Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70274', N'Carp Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70275', N'Pale Rider Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70276', N'Pale Rider Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70277', N'Pale Rider Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70278', N'Pale Rider Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70279', N'Pale Rider Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70280', N'Pale Rider Bandana [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70281', N'White Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70282', N'Golden Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70283', N'Golden Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70284', N'Golden Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70285', N'Golden Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70286', N'Golden Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70287', N'Golden Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70288', N'White Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70289', N'White Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70290', N'White Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70291', N'White Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70292', N'White Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70293', N'White Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70294', N'Mantis Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70295', N'Roach Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70296', N'Locust Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70297', N'Boy Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70298', N'Elephant Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70299', N'Girl Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70300', N'Skull Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70301', N'TV Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70302', N'Boy Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70303', N'Elephant Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70304', N'Girl Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70305', N'Skull Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70306', N'TV Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70307', N'Boy Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70308', N'Elephant Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70309', N'Girl Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70310', N'Skull Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70311', N'TV Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70312', N'White Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70313', N'White Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70314', N'White Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70315', N'White Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70316', N'White Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70317', N'White Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70318', N'White Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70319', N'Brown Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70320', N'Red Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70321', N'Indigo Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70322', N'Yellow Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70323', N'White Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70324', N'Purple Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70325', N'Burgundy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70326', N'Black Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70327', N'White Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70328', N'Yellow Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70329', N'Pink Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70330', N'Green Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70331', N'Blue Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70332', N'Brown Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70333', N'White Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70334', N'Purple Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70335', N'Brown Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70336', N'Silver Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70337', N'Black Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70338', N'White Bridge Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70339', N'Red Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70340', N'Afro Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70341', N'Afro Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70342', N'Afro Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70343', N'Purple Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70344', N'Purple Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70345', N'Purple Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70346', N'Purple Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70347', N'Purple Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70348', N'Purple Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70349', N'Traditional Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70350', N'Traditional Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70351', N'Traditional Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70352', N'Traditional Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70353', N'Traditional Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70354', N'Traditional Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70355', N'Traditional Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70356', N'Black Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70357', N'Black Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70358', N'Black Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70359', N'Black Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70360', N'Black Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70361', N'Black Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70362', N'Traditional Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70363', N'Traditional Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70364', N'Traditional Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70365', N'Traditional Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70366', N'Traditional Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70367', N'Traditional Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70368', N'Traditional Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70369', N'Black Striped Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70370', N'Black Striped Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70371', N'Black Striped Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70372', N'Black Striped Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70373', N'Black Striped Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70374', N'Black Striped Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70375', N'Black Striped Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70376', N'Traditional Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70377', N'Traditional Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70378', N'Traditional Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70379', N'Traditional Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70380', N'Traditional Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70381', N'Traditional Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70382', N'Traditional Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70383', N'Basic Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70384', N'Basic Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70385', N'Basic Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70386', N'Basic Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70387', N'Basic Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70388', N'Basic Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70389', N'Basic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70390', N'Basic Accessory [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70391', N'Ranger Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70392', N'Ranger Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70393', N'Ranger Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70394', N'Ranger Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70395', N'Ranger Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70396', N'Ranger Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70397', N'Ranger Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70398', N'Orange Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70399', N'Orange Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70400', N'Orange Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70401', N'Orange Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70402', N'Orange Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70403', N'Orange Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70404', N'Orange Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70405', N'Red Check Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70406', N'Red Check Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70407', N'Red Check Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70408', N'Red Check Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70409', N'Red Check Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70410', N'Red Check Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70411', N'Red Check Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70412', N'Pink Dress Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70413', N'Pink Dress Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70414', N'Pink Dress Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70415', N'Pink Dress Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70416', N'Pink Dress Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70417', N'Pink Dress Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70418', N'Pink Dress Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70419', N'Grey Formal Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70420', N'Grey Formal Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70421', N'Grey Formal Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70422', N'Grey Formal Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70423', N'Grey Formal Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70424', N'Grey Formal Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70425', N'Grey Formal Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70426', N'White Dress Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70427', N'White Dress Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70428', N'White Dress Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70429', N'White Dress Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70430', N'White Dress Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70431', N'White Dress Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70432', N'White Dress Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70433', N'Blue Frill Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70434', N'Blue Frill Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70435', N'Blue Frill Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70436', N'Blue Frill Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70437', N'Blue Frill Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70438', N'Blue Frill Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70439', N'Blue Frill Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70440', N'Basic Costume Coat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70441', N'Basic Costume Pants [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70442', N'Basic Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70443', N'Basic Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70444', N'Basic Costume Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70445', N'Basic Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70446', N'Basic Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70447', N'Teddy Bear Body [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70448', N'Teddy Bear Head [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70449', N'Teddy Bear Head Hood [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70450', N'Teddy Bear Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70451', N'Roach Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70452', N'Mohican [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70453', N'Dandy Cut [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70454', N'Gold Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70455', N'Navy Leather Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70489', N'Navy Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70490', N'Pale Rider Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70491', N'Imperial Officer Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70492', N'Imperial Officer Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70493', N'Imperial Officer Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70494', N'Imperial Officer Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70495', N'Imperial Officer Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70496', N'Imperial Officer Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70497', N'Imperial Officer Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70498', N'Angela Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70499', N'Frantz Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70500', N'Tude Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70501', N'Chicken Box Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70502', N'Angela Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70503', N'Frantz Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70504', N'Tude Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70505', N'Chicken Box Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70506', N'White Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70507', N'White Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70508', N'White Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70509', N'White Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70510', N'White Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70511', N'White Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70512', N'Golden Deacon Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70513', N'Golden Deacon Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70514', N'Golden Deacon Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70515', N'Golden Deacon Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70516', N'Golden Deacon Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70517', N'Golden Deacon Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70518', N'Golden Deacon Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70519', N'Angela Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70520', N'Frantz Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70521', N'Tude Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70522', N'Chicken Box Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70523', N'Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70524', N'Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70525', N'Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70526', N'Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70527', N'Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70528', N'Casual Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70529', N'Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70530', N'Stylish Cellmate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70531', N'Stylish Cellmate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70532', N'Stylish Cellmate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70533', N'Stylish Cellmate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70534', N'Stylish Cellmate Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70535', N'Stylish Cellmate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70536', N'Stylish Cellmate Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70537', N'Shaggy Cut [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70538', N'Danny Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70539', N'Mohican [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70540', N'Layered Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70541', N'Mohican [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70542', N'Danny Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70543', N'Wind Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70544', N'Mushroom Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70545', N'Bob Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70546', N'Navy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70547', N'White Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70548', N'Blue Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70549', N'Pink Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70550', N'Sky Blue Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70551', N'Red Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70552', N'Grey Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70553', N'Bee Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70554', N'Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70555', N'Nun Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70556', N'Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70557', N'Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70558', N'Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70559', N'Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70560', N'Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70561', N'Chinese-Style Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70562', N'Chinese-Style Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70563', N'Chinese-Style Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70564', N'Chinese-Style Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70565', N'Chinese-Style Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70566', N'Chinese-Style Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70567', N'Chinese-Style Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70568', N'White Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70569', N'White Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70570', N'White Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70571', N'White Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70572', N'White Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70573', N'White Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70574', N'White Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70575', N'Angela Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70576', N'Boy Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70577', N'Cat Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70578', N'Chicken Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70579', N'Elephant Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70580', N'Fly Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70581', N'Frantz Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70582', N'Girl Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70583', N'Pig Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70584', N'Skull Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70585', N'Tude Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70586', N'TV Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'10', N'0', N'0', N'2', N'10', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70587', N'Afro Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70588', N'Standard Hair01 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70589', N'Standard Hair02 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70590', N'Standard Hair03 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70591', N'Golden Pattern Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70592', N'Black Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70593', N'White Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70594', N'Purple Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70595', N'Silver Sage Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70596', N'Black Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70597', N'Natasha Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70598', N'Natasha Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70599', N'Navy Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70600', N'Golden Pattern Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70601', N'Pink Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70602', N'Dark Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70603', N'Golden Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70604', N'White Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70605', N'Black Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70606', N'Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70607', N'Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70608', N'Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70609', N'Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70610', N'Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70611', N'Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70612', N'Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70613', N'Violet Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70614', N'Violet Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70615', N'Violet Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70616', N'Violet Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70617', N'Violet Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70618', N'Violet Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70619', N'Violet Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70620', N'Golden Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70621', N'Golden Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70622', N'Golden Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70623', N'Golden Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70624', N'Golden Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70625', N'Golden Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70626', N'Golden Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70627', N'Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70628', N'Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70629', N'Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70630', N'Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70631', N'Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70632', N'Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70633', N'Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70634', N'Winter Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70635', N'Winter Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70636', N'Winter Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70637', N'Winter Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70638', N'Winter Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70639', N'Winter Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70640', N'Winter Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70641', N'Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70642', N'Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70643', N'Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70644', N'Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70645', N'Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70646', N'Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70647', N'Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70648', N'Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70649', N'Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70650', N'Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70651', N'Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70652', N'Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70653', N'Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70654', N'Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70655', N'Flustered Face', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70656', N'Battle Damage', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70657', N'Crazy Clown', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70658', N'Carnival Face-Paint', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70659', N'Wild Beast', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70660', N'Masquerade Face[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70661', N'Face7', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70662', N'Face8', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70663', N'Face9', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70664', N'Face10', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70665', N'Brown Farsighted Glasses[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70666', N'White Wing Glasses[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70667', N'Orange Snowboarding Goggle[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70668', N'Yellow Sport Glasses[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70669', N'Brown Detective Monocle[Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70670', N'Couple Costume Pants[Male]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70671', N'Couple Costume Gloves[Male]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70672', N'Couple Costume Knit[Male]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70673', N'Couple Costume Hat[Male]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70674', N'Couple Costume Skirt[Female]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70675', N'Couple Costume Gloves[Female]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70676', N'Couple Costume Knit[Female]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70677', N'Couple Costume Hat[Female]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75440', N'Teddy Bear Body [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75441', N'Teddy Bear Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75442', N'Deep Sea Fish Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75443', N'Traditional Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75444', N'Traditional Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75445', N'Traditional Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75446', N'Traditional Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75447', N'Traditional Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75448', N'Traditional Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75449', N'Traditional Hat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75450', N'White Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75451', N'White Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75452', N'White Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75453', N'White Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75454', N'White Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75455', N'White Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75456', N'White Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75457', N'Brown Striped Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75458', N'Brown Striped Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75459', N'Brown Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75460', N'Brown Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75461', N'Brown Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75462', N'Brown Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75463', N'Brown Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75464', N'Brown Striped Accessory [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75465', N'Scarlet Chic Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75466', N'Scarlet Chic Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75467', N'Scarlet Chic Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75468', N'Scarlet Chic Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75469', N'Scarlet Chic Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75470', N'Scarlet Chic Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75471', N'Scarlet Chic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75472', N'Red Side Open Accessory [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75473', N'Blue Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75474', N'Blue Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75475', N'Blue Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75476', N'Blue Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75477', N'Blue Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75478', N'Blue Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75479', N'Blue Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75480', N'Pirate Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75481', N'Pirate Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75482', N'Pirate Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75483', N'Pirate Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75484', N'Pirate Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75485', N'Pirate Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75486', N'Pirate Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75487', N'Navy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75488', N'White Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75489', N'Blue Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75490', N'Pink Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75491', N'Sky Blue Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75492', N'Red Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75493', N'Grey Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75494', N'Bee Costume', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75495', N'Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75496', N'Nun Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75497', N'Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75498', N'Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75499', N'Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75500', N'Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75501', N'Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75502', N'Chinese-Style Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75503', N'Chinese-Style Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75504', N'Chinese-Style Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75505', N'Chinese-Style Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75506', N'Chinese-Style Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75507', N'Chinese-Style Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75508', N'Chinese-Style Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75509', N'White Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75510', N'White Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75511', N'White Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75512', N'White Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75513', N'White Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75514', N'White Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75515', N'White Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75516', N'Angela Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75517', N'Boy Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75518', N'Cat Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75519', N'Chicken Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75520', N'Elephant Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75521', N'Fly Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75522', N'Frantz Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75523', N'Girl Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75524', N'Pig Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75525', N'Skull Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75526', N'Tude Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75527', N'TV Box Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75528', N'Afro Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75529', N'Standard Hair01 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75530', N'Standard Hair02 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75531', N'Standard Hair03 [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75532', N'Natasha Failed Haircut1', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75533', N'Natasha Failed Haircut2', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75534', N'Natasha Failed Haircut3', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75535', N'Natasha Failed Haircut4', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75536', N'Natasha Failed Haircut5', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75537', N'Dress 01 Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75538', N'Dress 02 Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75539', N'Vice-Minister Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75540', N'Vice-Minister Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75541', N'Vice-Minister Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75542', N'Vice-Minister Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75543', N'Vice-Minister Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75544', N'Vice-Minister Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75545', N'Vice-Minister Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75546', N'Navy Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75547', N'Navy Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75548', N'Navy Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75549', N'Navy Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75550', N'Navy Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75551', N'Navy Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75552', N'Navy Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75553', N'Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75554', N'Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75555', N'Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75556', N'Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75557', N'Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75558', N'Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75559', N'Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75560', N'Swimsuit Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75561', N'Swimsuit Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75562', N'Swimsuit Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75563', N'Swimsuit Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75564', N'Swimsuit Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75565', N'Swimsuit Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75566', N'Swimsuit Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75567', N'Afro Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75568', N'Basic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75569', N'Brown Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75570', N'Brown Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75571', N'Brown Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75572', N'Brown Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75573', N'Brown Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75574', N'Brown Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75575', N'Brown Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75576', N'Navy Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75577', N'Navy Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75578', N'Navy Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75579', N'Navy Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75580', N'Navy Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75581', N'Navy Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75582', N'Navy Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75583', N'Pink Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75584', N'Pink Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75585', N'Pink Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75586', N'Pink Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75587', N'Pink Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75588', N'Pink Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75589', N'Pink Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75590', N'Pink Striped Accessory [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75591', N'Grey Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75592', N'Grey Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75593', N'Grey Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75594', N'Grey Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75595', N'Grey Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75596', N'Grey Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75597', N'Grey Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75598', N'Grey Striped Accessory [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75599', N'White Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75600', N'White Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75601', N'White Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75602', N'White Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75603', N'White Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75604', N'White Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75605', N'White Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75606', N'Black Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75607', N'Black Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75608', N'Black Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75609', N'Black Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75610', N'Black Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75611', N'Black Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75612', N'Black Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75613', N'Blue Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75614', N'Blue Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75615', N'Blue Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75616', N'Blue Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75617', N'Blue Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75618', N'Blue Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75619', N'Blue Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75620', N'Violet Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75621', N'Violet Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75622', N'Violet Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75623', N'Violet Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75624', N'Violet Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75625', N'Violet Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75626', N'Violet Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75627', N'Green Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75628', N'Green Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75629', N'Green Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75630', N'Green Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75631', N'Green Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75632', N'Green Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75633', N'Green Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75634', N'Orange Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75635', N'Orange Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75636', N'Orange Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75637', N'Orange Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75638', N'Orange Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75639', N'Orange Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75640', N'Orange Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75641', N'Skeleton Body [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75642', N'Skeleton Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75643', N'Snowman Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75644', N'Dragon Costume Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75645', N'Dragon Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75646', N'Dragon Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75647', N'Purple Foxy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75648', N'Red Foxy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75649', N'Rose Foxy Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75650', N'Purple Wild Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75651', N'Red Wild Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75652', N'Rose Wild Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75653', N'Plum Regent Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75654', N'Red Regent Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75655', N'Rose Regent Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75656', N'Aviators', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75657', N'Pink Spinners', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75658', N'Super Star Shades', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75659', N'White Shutter Shades', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75660', N'Grouchy Glasses', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75661', N'[Test] Transparent Glasses that cannot be seen [Common]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75662', N'Bear Doll Hair with Hole [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75663', N'Rabbit Doll Head [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75664', N'Rabbit Doll Body [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75665', N'Rabbit Doll Glove [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75666', N'Rabbit Doll Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75667', N'Basic Coat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75668', N'Basic Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75669', N'Basic Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75670', N'Basic Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75671', N'Basic Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75672', N'Basic Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75673', N'Basic Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75674', N'Upsweep Brown Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75675', N'Upsweep Blue Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75676', N'Upsweep Red Hairstyle Design [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75677', N'Dandy Brown Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75678', N'Dandy Blue Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75679', N'Dandy Yellow Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75680', N'Pompadour Brown Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75681', N'Pompadour Blue Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75682', N'Pompadour Yellow Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75683', N'Indigo Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75684', N'Indigo Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75685', N'Indigo Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75686', N'Indigo Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75687', N'Indigo Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75688', N'Indigo Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75689', N'Black Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75690', N'Black Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75691', N'Black Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75692', N'Black Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75693', N'Black Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75694', N'Black Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75695', N'Dapple Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75696', N'Dapple Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75697', N'Dapple Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75698', N'Dapple Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75699', N'Dapple Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75700', N'Dapple Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75701', N'Red Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75702', N'Red Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75703', N'Red Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75704', N'Red Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75705', N'Red Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75706', N'Red Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75707', N'Leopard Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75708', N'Leopard Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75709', N'Leopard Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75710', N'Leopard Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75711', N'Leopard Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75712', N'Leopard Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75713', N'White Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75714', N'White Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75715', N'White Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75716', N'White Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75717', N'White Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75718', N'White Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75719', N'Brown Outlaw Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75720', N'Brown Outlaw Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75721', N'Brown Outlaw Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75722', N'Brown Outlaw Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75723', N'Brown Outlaw Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75724', N'Brown Outlaw Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76001', N'Blue Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76002', N'Blue Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76003', N'Blue Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76004', N'Blue Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76005', N'Blue Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76006', N'Blue Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76007', N'Purplish Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76008', N'Purplish Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76009', N'Purplish Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76010', N'Purplish Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76011', N'Purplish Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76012', N'Purplish Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76013', N'Summer Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76014', N'Summer Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76015', N'Summer Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76016', N'Summer Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76017', N'Summer Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76018', N'Summer Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76019', N'Brown Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76020', N'Brown Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76021', N'Brown Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76022', N'Brown Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76023', N'Brown Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76024', N'Brown Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76025', N'Brown Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76026', N'Navy Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76027', N'Navy Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76028', N'Navy Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76029', N'Navy Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76030', N'Navy Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76031', N'Navy Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76032', N'Navy Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76033', N'Blue Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76034', N'Blue Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76035', N'Blue Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76036', N'Blue Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76037', N'Blue Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76038', N'Blue Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76039', N'Blue Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76040', N'Purplish Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76041', N'Purplish Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76042', N'Purplish Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76043', N'Purplish Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76044', N'Purplish Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76045', N'Purplish Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76046', N'Purplish Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76047', N'Pink Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76048', N'Pink Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76049', N'Pink Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76050', N'Pink Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76051', N'Pink Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76052', N'Pink Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76053', N'Pink Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76054', N'Grey Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76055', N'Grey Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76056', N'Grey Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76057', N'Grey Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76058', N'Grey Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76059', N'Grey Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76060', N'Grey Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76061', N'White Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76062', N'White Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76063', N'White Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76064', N'White Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76065', N'White Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76066', N'White Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76067', N'White Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76068', N'Black Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76069', N'Black Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76070', N'Black Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76071', N'Black Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76072', N'Black Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76073', N'Black Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76074', N'Black Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76075', N'Summer Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76076', N'Green Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76077', N'Green Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76078', N'Green Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76079', N'Green Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76080', N'Green Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76081', N'Green Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76082', N'Green Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76083', N'Orange Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76084', N'Orange Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76085', N'Orange Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76086', N'Orange Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76087', N'Orange Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76088', N'Orange Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76089', N'Orange Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76090', N'Skeleton Body [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76091', N'Skeleton Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76092', N'Standard Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76093', N'Standard Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76094', N'Standard Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76095', N'Standard Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76096', N'Standard Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76097', N'Standard Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76098', N'Standard Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76099', N'Snowman Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76100', N'Standard Costume Coat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76101', N'Standard Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76102', N'Standard Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76103', N'Standard Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76104', N'Standard Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76105', N'Standard Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76106', N'Standard Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76107', N'Dragon Costume Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76108', N'Dragon Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76109', N'Dragon Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76110', N'Black Hawk Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76111', N'Grey Hawk Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76112', N'Pink Hawk Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76113', N'Grey Trimmed Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76114', N'Red Trim Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76115', N'Pink Trim Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76116', N'Lovely Black Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76117', N'Lovely Yellow Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76118', N'Lovely Red Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76119', N'Black Flowing Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76120', N'Grey Flowing Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76121', N'Pink Flowing Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76122', N'Black Regent Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76123', N'Grey Regent Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76124', N'Pink Regent Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76125', N'Grey Apple Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76126', N'Red Apple Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76127', N'Pink Apple Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76128', N'Grey Regent Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76129', N'Red Regent Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76130', N'Pink Regent Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76131', N'Majestic Black Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76132', N'Majestic Yellow Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76133', N'Majestic Red Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76134', N'Black Regent Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76135', N'Yellow Regent Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76136', N'Red Regent Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76137', N'Beige Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76138', N'Beige Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76139', N'Beige Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76140', N'Beige Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76141', N'Beige Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76142', N'Beige Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76143', N'Beige Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76144', N'White Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76145', N'White Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76146', N'White Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76147', N'White Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76148', N'White Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76149', N'White Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76150', N'White Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76151', N'Green Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76152', N'Green Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76153', N'Green Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76154', N'Green Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76155', N'Green Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76156', N'Green Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76157', N'Green Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76158', N'Yellow Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76159', N'Yellow Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76160', N'Yellow Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76161', N'Yellow Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76162', N'Yellow Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76163', N'Yellow Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76164', N'Yellow Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76165', N'Purple Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76166', N'Purple Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76167', N'Purple Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76168', N'Purple Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76169', N'Purple Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76170', N'Purple Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76171', N'Purple Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76172', N'Red Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76173', N'Red Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76174', N'Red Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76175', N'Red Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76176', N'Red Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76177', N'Red Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76178', N'Red Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76179', N'Dark Slayer Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76180', N'Dark Slayer Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76181', N'Dark Slayer Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76182', N'Dark Slayer Glove [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76183', N'Dark Slayer Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76184', N'Dark Slayer Tights [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76185', N'Dark Slayer Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76186', N'Teal Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76187', N'Teal Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76188', N'Teal Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76189', N'Teal Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76190', N'Teal Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76191', N'Teal Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76192', N'Teal Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76193', N'Purple Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76194', N'Purple Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76195', N'Purple Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76196', N'Purple Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76197', N'Purple Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76198', N'Purple Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76199', N'Purple Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76200', N'Green Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76201', N'Green Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76202', N'Green Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76203', N'Green Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76204', N'Green Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76205', N'Green Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76206', N'Green Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76207', N'Pink Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76208', N'Pink Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76209', N'Pink Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76210', N'Pink Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76211', N'Pink Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76212', N'Pink Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76213', N'Pink Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76214', N'Black Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76215', N'Black Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76216', N'Black Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76217', N'Black Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76218', N'Black Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76219', N'Black Dutchess Tights [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76220', N'Black Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76221', N'White Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76222', N'White Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76223', N'White Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76224', N'White Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76225', N'White Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76226', N'White Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76227', N'White Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76228', N'Beige Dutchess Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76229', N'Beige Dutchess Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76230', N'Beige Dutchess Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76231', N'Beige Dutchess Glove [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76232', N'Beige Dutchess Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76233', N'Beige Dutchess Bow [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76234', N'Beige Dutchess Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76235', N'Rabbit Doll Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76236', N'Rabbit Doll Body [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76237', N'Rabbit Doll Glove [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'76238', N'Rabbit Doll Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77001', N'Swimsuit Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77002', N'Swimsuit Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77003', N'Swimsuit Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77004', N'Swimsuit Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77005', N'Swimsuit Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77006', N'Swimsuit Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77007', N'Swimsuit Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77008', N'Brown Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77009', N'Brown Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77010', N'Brown Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77011', N'Brown Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77012', N'Brown Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77013', N'Brown Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77014', N'Brown Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77015', N'Navy Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77016', N'Navy Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77017', N'Navy Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77018', N'Navy Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77019', N'Navy Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77020', N'Navy Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77021', N'Navy Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77022', N'Maid Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77023', N'Maid Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77024', N'Maid Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77025', N'Maid Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77026', N'Maid Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77027', N'Maid Costume Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77028', N'Maid Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77029', N'Leather Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77030', N'Leather Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77031', N'Leather Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77032', N'Leather Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77033', N'Leather Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77034', N'Leather Costume Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77035', N'Leather Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77036', N'Pink Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77037', N'Pink Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77038', N'Pink Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77039', N'Pink Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77040', N'Pink Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77041', N'Pink Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77042', N'Pink Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77043', N'Grey Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77044', N'Grey Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77045', N'Grey Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77046', N'Grey Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77047', N'Grey Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77048', N'Grey Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77049', N'Grey Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77050', N'White Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77051', N'White Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77052', N'White Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77053', N'White Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77054', N'White Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77055', N'White Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77056', N'White Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77057', N'Black Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77058', N'Black Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77059', N'Black Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77060', N'Black Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77061', N'Black Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77062', N'Black Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77063', N'Black Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77064', N'Blue Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77065', N'Blue Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77066', N'Blue Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77067', N'Blue Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77068', N'Blue Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77069', N'Blue Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77070', N'Blue Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77071', N'Violet Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77072', N'Violet Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77073', N'Violet Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77074', N'Violet Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77075', N'Violet Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77076', N'Violet Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77077', N'Violet Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77078', N'Green Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77079', N'Green Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77080', N'Green Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77081', N'Green Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77082', N'Green Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77083', N'Green Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77084', N'Green Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77085', N'Orange Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77086', N'Orange Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77087', N'Orange Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77088', N'Orange Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77089', N'Orange Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77090', N'Orange Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77091', N'Orange Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77092', N'Skeleton Body [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77093', N'Skeleton Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77094', N'Snowman Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77095', N'Standard Costume Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77096', N'Standard Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77097', N'Standard Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77098', N'Standard Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77099', N'Standard Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77100', N'Standard Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77101', N'Standard Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77102', N'Dragon Costume Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77103', N'Dragon Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77104', N'Dragon Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77105', N'Red Pinned Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77106', N'Purple Pinned Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77107', N'Grey Pinned Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77108', N'Cute Yellow Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77109', N'Cute Pink Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77110', N'Cute Black Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77111', N'Upbeat Red Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77112', N'Upbeat Purple Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77113', N'Upbeat Grey Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77114', N'Red Regent Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77115', N'Plum Regent Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77116', N'Grey Regent Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77117', N'Yellow Tied Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77118', N'Pink Tied Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77119', N'Black Tied Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77120', N'Yellow Regent Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77121', N'Pink Regent Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77122', N'Black Regent Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77123', N'Brown Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77124', N'Brown Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77125', N'Brown Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77126', N'Brown Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77127', N'Brown Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77128', N'Brown Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77129', N'Brown Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77130', N'Purple Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77131', N'Purple Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77132', N'Purple Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77133', N'Purple Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77134', N'Purple Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77135', N'Purple Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77136', N'Purple Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77137', N'Green Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77138', N'Green Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77139', N'Green Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77140', N'Green Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77141', N'Green Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77142', N'Green Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77143', N'Green Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77144', N'Violet Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77145', N'Violet Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77146', N'Violet Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77147', N'Violet Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77148', N'Violet Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77149', N'Violet Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77150', N'Violet Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77151', N'Black Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77152', N'Black Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77153', N'Black Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77154', N'Black Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77155', N'Black Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77156', N'Black Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77157', N'Black Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77158', N'White Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77159', N'White Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77160', N'White Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77161', N'White Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77162', N'White Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77163', N'White Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77164', N'White Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77165', N'Beige Noble Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77166', N'Beige Noble Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77167', N'Beige Noble Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77168', N'Beige Noble Glove [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77169', N'Beige Noble Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77170', N'Beige Noble Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77171', N'Beige Noble Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77172', N'Rabbit Doll Head [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77173', N'Rabbit Doll Body [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77174', N'Rabbit Doll Glove [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'77175', N'Rabbit Doll Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78001', N'Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78002', N'Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78003', N'Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78004', N'Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78005', N'Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78006', N'Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78007', N'Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78008', N'Brown Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78009', N'Brown Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78010', N'Brown Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78011', N'Brown Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78012', N'Brown Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78013', N'Brown Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78014', N'Brown Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78015', N'Navy Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78016', N'Navy Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78017', N'Navy Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78018', N'Navy Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78019', N'Navy Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78020', N'Navy Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78021', N'Navy Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78022', N'Pink Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78023', N'Pink Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78024', N'Pink Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78025', N'Pink Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78026', N'Pink Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78027', N'Pink Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78028', N'Pink Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78029', N'Grey Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78030', N'Grey Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78031', N'Grey Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78032', N'Grey Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78033', N'Grey Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78034', N'Grey Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78035', N'Grey Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78036', N'Blue Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78037', N'Blue Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78038', N'Blue Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78039', N'Blue Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78040', N'Blue Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78041', N'Blue Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78042', N'Blue Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78043', N'Purple Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78044', N'Purple Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78045', N'Purple Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78046', N'Purple Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78047', N'Purple Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78048', N'Purple Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78049', N'Purple Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78050', N'White Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78051', N'White Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78052', N'White Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78053', N'White Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78054', N'White Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78055', N'White Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78056', N'White Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78057', N'Black Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78058', N'Black Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78059', N'Black Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78060', N'Black Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78061', N'Black Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78062', N'Black Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78063', N'Black Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78064', N'Beach Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78065', N'Beach Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78066', N'Beach Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78067', N'Beach Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78068', N'Beach Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78069', N'Beach Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78070', N'Beach Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78071', N'Green Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78072', N'Green Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78073', N'Green Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78074', N'Green Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78075', N'Green Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78076', N'Green Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78077', N'Green Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78078', N'Orange Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78079', N'Orange Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78080', N'Orange Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78081', N'Orange Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78082', N'Orange Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78083', N'Orange Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78084', N'Orange Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78085', N'Skeleton Body [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78086', N'Skeleton Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78087', N'Snowman Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78088', N'Dragon Costume Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78089', N'Dragon Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78090', N'Dragon Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78091', N'Yellow Reggae Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78092', N'Purple Reggae Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78093', N'Green Reggae Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78094', N'Floral Black Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78095', N'Floral Red Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78096', N'Floral Yellow Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78097', N'Dreamy Yellow Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78098', N'Dreamy Purple Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78099', N'Dreamy Green Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78100', N'Yellow Regent Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78101', N'Plum Regent Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78102', N'Green Regent Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78103', N'Wavy Black Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78104', N'Wavy Red Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78105', N'Wavy Yellow Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78106', N'Black Regent Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78107', N'Red Regent Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78108', N'Yellow Regent Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78109', N'Brown Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78110', N'Brown Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78111', N'Brown Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78112', N'Brown Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78113', N'Brown Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78114', N'Brown Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78115', N'Brown Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78116', N'Green Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78117', N'Green Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78118', N'Green Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78119', N'Green Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78120', N'Green Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78121', N'Green Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78122', N'Green Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78123', N'Purple Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78124', N'Purple Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78125', N'Purple Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78126', N'Purple Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78127', N'Purple Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78128', N'Purple Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78129', N'Purple Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78130', N'Grey Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78131', N'Grey Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78132', N'Grey Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78133', N'Grey Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78134', N'Grey Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78135', N'Grey Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78136', N'Grey Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78137', N'Red Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78138', N'Red Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78139', N'Red Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78140', N'Red Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78141', N'Red Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78142', N'Red Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78143', N'Red Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78144', N'Black Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78145', N'Black Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78146', N'Black Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78147', N'Black Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78148', N'Black Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78149', N'Black Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78150', N'Black Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78151', N'White Chen Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78152', N'White Chen Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78153', N'White Chen Glove [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78154', N'White Chen Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78155', N'White Chen Charm [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78156', N'White Chen Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78157', N'White Chen Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78158', N'Costume Supply Item : Shoes', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78159', N'Costume Supply Item : Shirt', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78160', N'Costume Supply Item : Glove', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78161', N'Costume Supply Item : Tights', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78162', N'Costume Supply Item : Coat', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78163', N'Costume Supply Item : Pants', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78164', N'Rabbit Doll Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78165', N'Rabbit Doll Body [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78166', N'Rabbit Doll Glove [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78167', N'Rabbit Doll Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78168', N'Costume-issue Item: Cat Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78169', N'Costume-issue Item: Fly Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78170', N'Costume-issue Item: Pig Paperbox Head', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78171', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78172', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78173', N'Weapon-issue Item', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78174', N'Insect Costume Design Issue Item', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78175', N'Title Issue Item', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'78176', N'Growth Hormone Releaser Ingredient Box', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'500', N'110')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80001', N'Condition 1', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80002', N'Condition 2', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80003', N'Condition 3', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80004', N'Condition 4', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80005', N'Condition 5', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80006', N'Condition 6', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80007', N'Condition 7', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80008', N'Condition 8', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80009', N'Condition 9', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80010', N'Condition 10', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80011', N'10 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80012', N'20 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80013', N'30 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80014', N'50 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80015', N'80 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80016', N'100 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80017', N'130 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80018', N'150 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80019', N'180 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80020', N'200 Combo', N'6', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90001', N'Other World Tutorial', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90002', N'Cellar Sewer Dead Man''s Chest', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90003', N'90003', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90004', N'90004', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90005', N'90005', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90006', N'90006', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90010', N'90010', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90011', N'The tutorial will be over after you meet Vincent', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90012', N'', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90013', N'The last cypher scene with Amelia on the 5th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014', N'Georg''s Anger Management Class 5', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90021', N'The Last Event 1 on the 4th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90022', N'The Last Event 2 on the 4th', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90023', N'The scene of Vincent rescuing Gerald', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024', N'Arboretum Boss Event', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025', N'Scene were Ryan is caught chasing Vincent', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90031', N'Scene where Mr. Heo meets Pierre ', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90032', N'Betty runs out from the bar', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90033', N'The scene where Gorgon encounters Death', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034', N'The scene where Gerald makes a run to the Grave', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035', N'The scene where Death and Gerald go off to the Castle together', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90041', N'90041', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90042', N'90042', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90043', N'90043', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044', N'90044', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045', N'10th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046', N'50th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90047', N'100th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90048', N'200th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90049', N'300th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90050', N'400th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90051', N'500th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90052', N'600th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90053', N'700th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054', N'800th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055', N'900th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056', N'1000th Floor Clear', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90057', N'Veranda First room blocked conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90058', N'Veranda First room open conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90059', N'Veranda First room blocked conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90060', N'Veranda Second room open conversation', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90061', N'D-4 END', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90110', N'Seed 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90120', N'Seed 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90130', N'Seed 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90210', N'Baby 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90220', N'Baby 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90230', N'Baby 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90310', N'Elementary Student 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90320', N'Elementary Student 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90330', N'Elementary Student 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90410', N'Teenager 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90420', N'Teenager 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90430', N'Teenager 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90511', N'Health 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90512', N'Personality 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90513', N'Force 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90514', N'Charm 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90515', N'Intelligence 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90521', N'Health 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90522', N'Personality 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90523', N'Force 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90524', N'Charm 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90525', N'Intelligence 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90531', N'Health 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90532', N'Personality 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90533', N'Force 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90534', N'Charm 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90535', N'Intelligence 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90601', N'Witch 1', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90602', N'Witch 2', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90603', N'Witch 3', N'6', N'0', N'0', N'15', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100001', N'Instant Item 01', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100002', N'Instant Item 02', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100003', N'Instant Item 03', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100004', N'Instant Item 04', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100005', N'Instant Item 05', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'100006', N'Instant Item 06', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'110000', N'Other World Entry Card', N'5', N'0', N'0', N'13', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120000', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120001', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120002', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120003', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120004', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120005', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120006', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120007', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120008', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120009', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120010', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120011', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120012', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120013', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120015', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120016', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120017', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120018', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120019', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120020', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120021', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120022', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120023', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120025', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120026', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120027', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120028', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120029', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120030', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120031', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120032', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120033', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120035', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120036', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120037', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120038', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120039', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120040', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120041', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120042', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120043', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120045', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120046', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120047', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120048', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120049', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120050', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120051', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120052', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120053', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120054', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120055', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120056', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120057', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120058', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120059', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120060', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120061', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120062', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120063', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120064', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120065', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120066', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120067', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120068', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120069', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120070', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120071', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120072', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120073', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120074', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120075', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120076', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120077', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120078', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120079', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120080', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120081', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120082', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120083', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120084', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120085', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120086', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120087', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120088', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120089', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120090', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120091', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120092', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120093', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120094', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120095', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120096', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120097', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120098', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120099', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120100', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120101', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120102', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120103', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120104', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120105', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120106', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120107', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120108', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120109', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120110', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120111', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120112', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120113', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120114', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120115', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120116', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120117', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120118', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120119', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120120', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120121', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120122', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120123', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120124', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120125', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120126', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120127', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120128', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120129', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120130', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120131', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120132', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120133', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120134', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120135', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120136', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120137', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120138', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120139', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120140', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120141', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120142', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120143', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120144', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120145', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120146', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120147', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120148', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120149', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120150', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120151', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120152', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120153', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120154', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120155', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120156', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120157', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120158', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120159', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120160', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120161', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120162', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120163', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120164', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120165', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120166', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120167', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120168', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120169', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120170', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120171', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120172', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120173', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120174', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120175', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120176', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120177', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120178', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120179', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120180', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120181', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120182', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120183', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120184', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120185', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120186', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120187', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120188', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120189', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120190', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120191', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120192', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120193', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120194', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120195', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120196', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120197', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120198', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120199', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120200', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120201', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120202', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120203', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120204', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120205', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120206', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120207', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120208', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120209', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120210', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120211', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120212', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120213', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120214', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120215', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120216', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120217', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120218', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120219', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120220', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120221', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120222', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120223', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120224', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120225', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120226', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120227', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120228', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120229', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120230', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120231', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120232', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120233', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120234', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120235', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120236', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120237', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120238', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120239', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120240', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120241', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120242', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120243', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120244', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120999', N'Riddle Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'121901', N'Chaos Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'121902', N'Chaos Box', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'130000', N'Coin of Luck', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'630511', N'Militia Ring', N'1', N'2', N'0', N'17', N'2', N'3', N'0', N'0', N'0', N'0', N'300', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1000001', N'Frantz Invinsible Sword for testing', N'1', N'0', N'3', N'5', N'5', N'1', N'9500', N'1', N'3', N'1', N'2000', N'108240', N'11906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1000002', N'Angela Invinsible Magic for testing', N'1', N'0', N'3', N'7', N'5', N'1', N'9500', N'1', N'3', N'1', N'2500', N'108240', N'11906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1000003', N'Tude Invinsible Gauntlet for testing', N'1', N'0', N'3', N'9', N'5', N'1', N'9500', N'1', N'3', N'1', N'1800', N'108240', N'11906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'1000004', N'Old Mithril Sword', N'1', N'0', N'0', N'39', N'6', N'1', N'100000', N'0', N'0', N'1', N'2000', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'10000001', N'Chardonnay Wine', N'2', N'0', N'0', N'13', N'1', N'6', N'0', N'0', N'0', N'0', N'1', N'100', N'11')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011000', N'Practice Sword', N'1', N'0', N'0', N'5', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011001', N'Starter Sword', N'1', N'0', N'0', N'5', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011002', N'Short Sword', N'1', N'0', N'0', N'5', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011003', N'Long Sword', N'1', N'0', N'0', N'5', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011004', N'War Sword', N'1', N'0', N'0', N'5', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011005', N'Sharp Sword', N'1', N'0', N'0', N'5', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011006', N'Battle Sword', N'1', N'0', N'0', N'5', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011007', N'Strong Sword', N'1', N'0', N'0', N'5', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011008', N'Sturdy Sword', N'1', N'0', N'0', N'5', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011009', N'Broad Sword', N'1', N'0', N'0', N'5', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011010', N'Celt Sword', N'1', N'0', N'0', N'5', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011011', N'Gallant Sword', N'1', N'0', N'0', N'5', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011012', N'Primal Sword', N'1', N'0', N'0', N'5', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011013', N'Royal Sword', N'1', N'0', N'0', N'5', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011014', N'Gothic Sword', N'1', N'0', N'0', N'5', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011015', N'Templar Sword', N'1', N'0', N'0', N'5', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011016', N'Keen Sword', N'1', N'0', N'0', N'5', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011017', N'Zephyr Sword', N'1', N'0', N'0', N'5', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011018', N'Demonic Sword', N'1', N'0', N'0', N'5', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11011019', N'Shadow Sword', N'1', N'0', N'0', N'5', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012001', N'Starter Sword', N'1', N'0', N'0', N'5', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012002', N'Short Sword', N'1', N'0', N'0', N'5', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012003', N'Long Sword', N'1', N'0', N'0', N'5', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012004', N'War Sword', N'1', N'0', N'0', N'5', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012005', N'Sharp Sword', N'1', N'0', N'0', N'5', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012006', N'Battle Sword', N'1', N'0', N'0', N'5', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012007', N'Strong Sword', N'1', N'0', N'0', N'5', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012008', N'Sturdy Sword', N'1', N'0', N'0', N'5', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012009', N'Broad Sword', N'1', N'0', N'0', N'5', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012010', N'Celt Sword', N'1', N'0', N'0', N'5', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012011', N'Gallant Sword', N'1', N'0', N'0', N'5', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012012', N'Primal Sword', N'1', N'0', N'0', N'5', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012013', N'Royal Sword', N'1', N'0', N'0', N'5', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012014', N'Gothic Sword', N'1', N'0', N'0', N'5', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012015', N'Templar Sword', N'1', N'0', N'0', N'5', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012016', N'Keen Sword', N'1', N'0', N'0', N'5', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012017', N'Zephyr Sword', N'1', N'0', N'0', N'5', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012018', N'Demonic Sword', N'1', N'0', N'0', N'5', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11012019', N'Shadow Sword', N'1', N'0', N'0', N'5', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014001', N'Bone Blade', N'1', N'0', N'0', N'5', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014002', N'Dark Blade', N'1', N'1', N'5', N'5', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014003', N'Assault Sword', N'1', N'1', N'5', N'5', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014004', N'Unholy Sword', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014005', N'Lavinunce Edge', N'1', N'1', N'5', N'5', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014006', N'Massacre Edge', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014007', N'Demonic Blade', N'1', N'1', N'5', N'5', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014008', N'Oathbreaker', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014009', N'Al-Hajad', N'1', N'1', N'5', N'5', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014010', N'Dark Eye', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014011', N'Infinity Reavers', N'1', N'1', N'5', N'5', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014104', N'Delicate Unholy Sword', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014106', N'Delicate Massacre Edge', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014108', N'Delicate Oathbreaker', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11014110', N'Delicate Darkeye', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015001', N'Shark Tooth', N'1', N'1', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015002', N'Dark Prince', N'1', N'1', N'3', N'5', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015003', N'Black Fang', N'1', N'1', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015004', N'Blood Moon', N'1', N'1', N'3', N'5', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015005', N'Dark Stream', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015006', N'Gram', N'1', N'1', N'3', N'5', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015007', N'Death Bringer', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015008', N'Caliburn', N'1', N'1', N'3', N'5', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015009', N'Tirbing', N'1', N'1', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015010', N'Sinister', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015011', N'Dark Stream', N'1', N'1', N'3', N'5', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015103', N'Delicate Black Fang', N'1', N'1', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015105', N'Delicate Navioo', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015107', N'Delicate Death Bringer', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11015109', N'Delicate Tirbing', N'1', N'1', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021001', N'Hand Axe', N'1', N'0', N'0', N'6', N'1', N'10', N'7000', N'0', N'0', N'1', N'2200', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021002', N'Broad Mace', N'1', N'0', N'0', N'6', N'1', N'13', N'7000', N'0', N'0', N'1', N'2200', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021003', N'Buroba Axe', N'1', N'0', N'0', N'6', N'1', N'16', N'7000', N'0', N'0', N'1', N'2200', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021004', N'Steel Axe', N'1', N'0', N'0', N'6', N'1', N'19', N'7000', N'0', N'0', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021005', N'Celt Axe', N'1', N'0', N'0', N'6', N'1', N'22', N'7000', N'0', N'0', N'1', N'2200', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021006', N'Two-Handed Axe', N'1', N'0', N'0', N'6', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021007', N'Great Axe', N'1', N'0', N'0', N'6', N'1', N'28', N'7000', N'0', N'0', N'1', N'2200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021008', N'Lokaber Mace', N'1', N'0', N'0', N'6', N'1', N'31', N'7000', N'0', N'0', N'1', N'2200', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021009', N'Gothic Axe', N'1', N'0', N'0', N'6', N'1', N'34', N'7000', N'0', N'0', N'1', N'2200', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021010', N'War Axe', N'1', N'0', N'0', N'6', N'1', N'37', N'7000', N'0', N'0', N'1', N'2200', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021011', N'Bardiche Axe', N'1', N'0', N'0', N'6', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021012', N'Bearded Axe', N'1', N'0', N'0', N'6', N'1', N'43', N'7000', N'0', N'0', N'1', N'2200', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021013', N'Buster Slayer', N'1', N'0', N'0', N'6', N'1', N'46', N'7000', N'0', N'0', N'1', N'2200', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021014', N'Stingray', N'1', N'0', N'0', N'6', N'1', N'49', N'7000', N'0', N'0', N'1', N'2200', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021015', N'Bone Slayer', N'1', N'0', N'0', N'6', N'1', N'52', N'7000', N'0', N'0', N'1', N'2200', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11021016', N'Battle Axe', N'1', N'0', N'0', N'6', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022001', N'Hand Axe', N'1', N'0', N'0', N'6', N'2', N'11', N'7500', N'0', N'3', N'1', N'2200', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022002', N'Broad Mace', N'1', N'0', N'0', N'6', N'2', N'14', N'7500', N'0', N'3', N'1', N'2200', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022003', N'Buroba Axe', N'1', N'0', N'0', N'6', N'2', N'17', N'7500', N'0', N'3', N'1', N'2200', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022004', N'Steel Axe', N'1', N'0', N'0', N'6', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022005', N'Celt Axe', N'1', N'0', N'0', N'6', N'2', N'23', N'7500', N'0', N'3', N'1', N'2200', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022006', N'Two-Handed Axe', N'1', N'0', N'0', N'6', N'2', N'26', N'7500', N'0', N'3', N'1', N'2200', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022007', N'Great Axe', N'1', N'0', N'0', N'6', N'2', N'29', N'7500', N'0', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022008', N'Lokaber Mace', N'1', N'0', N'0', N'6', N'2', N'32', N'7500', N'0', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022009', N'Gothic Axe', N'1', N'0', N'0', N'6', N'2', N'35', N'7500', N'0', N'3', N'1', N'2200', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022010', N'War Axe', N'1', N'0', N'0', N'6', N'2', N'38', N'7500', N'0', N'3', N'1', N'2200', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022011', N'Bardiche Axe', N'1', N'0', N'0', N'6', N'2', N'41', N'7500', N'0', N'3', N'1', N'2200', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022012', N'Bearded Axe', N'1', N'0', N'0', N'6', N'2', N'44', N'7500', N'0', N'3', N'1', N'2200', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022013', N'Buster Slayer', N'1', N'0', N'0', N'6', N'2', N'47', N'7500', N'0', N'3', N'1', N'2200', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022014', N'Stingray', N'1', N'0', N'0', N'6', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022015', N'Bone Slayer', N'1', N'0', N'0', N'6', N'2', N'53', N'7500', N'0', N'3', N'1', N'2200', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022016', N'Battle Axe', N'1', N'0', N'0', N'6', N'2', N'56', N'7500', N'0', N'3', N'1', N'2200', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022101', N'Grid Axe', N'1', N'0', N'0', N'6', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11022102', N'Small Axe', N'1', N'0', N'0', N'6', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024001', N'Assault Mace', N'1', N'1', N'5', N'6', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024002', N'Tabar Jin', N'1', N'1', N'5', N'6', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024003', N'Lumberjack', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024004', N'Fury', N'1', N'1', N'5', N'6', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024005', N'Kingsbane', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024006', N'Demonic Slayer', N'1', N'1', N'5', N'6', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024007', N'Minotauros', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024008', N'Ironcleaver', N'1', N'1', N'5', N'6', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024009', N'Savage Murderer', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024010', N'Destruction', N'1', N'1', N'5', N'6', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024103', N'Delicate Lumberjack', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024105', N'Delicate Kingsbane', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024107', N'Delicate Minotaur', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024109', N'Delicate Bloody Murderer', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11024110', N'Exquisite Destruction', N'1', N'1', N'5', N'6', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025001', N'Francisca', N'1', N'1', N'3', N'6', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025002', N'Palstave', N'1', N'1', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025003', N'Spontun', N'1', N'1', N'3', N'6', N'5', N'25', N'9000', N'1', N'3', N'1', N'2200', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025004', N'Grandis', N'1', N'1', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025005', N'Chaser', N'1', N'1', N'3', N'6', N'5', N'35', N'9000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025006', N'El-Nas', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025007', N'Earthquake', N'1', N'1', N'3', N'6', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025008', N'Grand Cross', N'1', N'1', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025009', N'Gigantes', N'1', N'1', N'3', N'6', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025102', N'Delicate Palstave', N'1', N'1', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025104', N'Delicate Grandis', N'1', N'1', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025106', N'Delicate El-Nas', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025108', N'Delicate Grand Cross', N'1', N'1', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11025109', N'Exquisite Gigantes', N'1', N'1', N'3', N'6', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031000', N'Practice Magic Sword', N'1', N'0', N'0', N'7', N'1', N'1', N'100000', N'0', N'0', N'1', N'2500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031001', N'Gnarled Sword', N'1', N'0', N'0', N'7', N'1', N'1', N'7000', N'0', N'0', N'1', N'2500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031002', N'Magic Sword', N'1', N'0', N'0', N'7', N'1', N'4', N'7000', N'0', N'0', N'1', N'2500', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031003', N'Lunar Magic Sword', N'1', N'0', N'0', N'7', N'1', N'7', N'7000', N'0', N'0', N'1', N'2500', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031004', N'Crystal Magic Sword', N'1', N'0', N'0', N'7', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031005', N'Runic Sword', N'1', N'0', N'0', N'7', N'1', N'13', N'7000', N'0', N'0', N'1', N'2500', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031006', N'Spell Sword', N'1', N'0', N'0', N'7', N'1', N'16', N'7000', N'0', N'0', N'1', N'2500', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031007', N'Druidic Blade', N'1', N'0', N'0', N'7', N'1', N'19', N'7000', N'0', N'0', N'1', N'2500', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031008', N'Spellweaver', N'1', N'0', N'0', N'7', N'1', N'22', N'7000', N'0', N'0', N'1', N'2500', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031009', N'Rune Spell Sword', N'1', N'0', N'0', N'7', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031010', N'Spell Breaker', N'1', N'0', N'0', N'7', N'1', N'28', N'7000', N'0', N'0', N'1', N'2500', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031011', N'Sorceress Sword', N'1', N'0', N'0', N'7', N'1', N'31', N'7000', N'0', N'0', N'1', N'2500', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031012', N'Nether Blade', N'1', N'0', N'0', N'7', N'1', N'34', N'7000', N'0', N'0', N'1', N'2500', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031013', N'Elven Spell Sword', N'1', N'0', N'0', N'7', N'1', N'37', N'7000', N'0', N'0', N'1', N'2500', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031014', N'Karma Edge', N'1', N'0', N'0', N'7', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031015', N'Rune Breaker', N'1', N'0', N'0', N'7', N'1', N'43', N'7000', N'0', N'0', N'1', N'2500', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031016', N'Obsidian Sword', N'1', N'0', N'0', N'7', N'1', N'46', N'7000', N'0', N'0', N'1', N'2500', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031017', N'Warlock Sword', N'1', N'0', N'0', N'7', N'1', N'49', N'7000', N'0', N'0', N'1', N'2500', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031018', N'Witchblade', N'1', N'0', N'0', N'7', N'1', N'52', N'7000', N'0', N'0', N'1', N'2500', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11031019', N'Demon Witch Sword', N'1', N'0', N'0', N'7', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032001', N'Gnarled Sword', N'1', N'0', N'0', N'7', N'2', N'2', N'7500', N'0', N'3', N'1', N'2500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032002', N'Magic Sword', N'1', N'0', N'0', N'7', N'2', N'5', N'7500', N'0', N'3', N'1', N'2500', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032003', N'Lunar Magic Sword', N'1', N'0', N'0', N'7', N'2', N'8', N'7500', N'0', N'3', N'1', N'2500', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032004', N'Crystal Magic Sword', N'1', N'0', N'0', N'7', N'2', N'11', N'7500', N'0', N'3', N'1', N'2500', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032005', N'Runic Sword', N'1', N'0', N'0', N'7', N'2', N'14', N'7500', N'0', N'3', N'1', N'2500', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032006', N'Spell Sword', N'1', N'0', N'0', N'7', N'2', N'17', N'7500', N'0', N'3', N'1', N'2500', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032007', N'Druidic Blade', N'1', N'0', N'0', N'7', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032008', N'Spellweaver', N'1', N'0', N'0', N'7', N'2', N'23', N'7500', N'0', N'3', N'1', N'2500', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032009', N'Rune Spell Sword', N'1', N'0', N'0', N'7', N'2', N'26', N'7500', N'0', N'3', N'1', N'2500', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032010', N'Spell Breaker', N'1', N'0', N'0', N'7', N'2', N'29', N'7500', N'0', N'3', N'1', N'2500', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032011', N'Sorceress Sword', N'1', N'0', N'0', N'7', N'2', N'32', N'7500', N'0', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032012', N'Nether Blade', N'1', N'0', N'0', N'7', N'2', N'35', N'7500', N'0', N'3', N'1', N'2500', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032013', N'Elven Spell Sword', N'1', N'0', N'0', N'7', N'2', N'38', N'7500', N'0', N'3', N'1', N'2500', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032014', N'Karma Edge', N'1', N'0', N'0', N'7', N'2', N'41', N'7500', N'0', N'3', N'1', N'2500', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032015', N'Rune Breaker', N'1', N'0', N'0', N'7', N'2', N'44', N'7500', N'0', N'3', N'1', N'2500', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032016', N'Obsidian Sword', N'1', N'0', N'0', N'7', N'2', N'47', N'7500', N'0', N'3', N'1', N'2500', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032017', N'Warlock Sword', N'1', N'0', N'0', N'7', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032018', N'Witchblade', N'1', N'0', N'0', N'7', N'2', N'53', N'7500', N'0', N'3', N'1', N'2500', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11032019', N'Demon Witch Sword', N'1', N'0', N'0', N'7', N'2', N'56', N'7500', N'0', N'3', N'1', N'2500', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034001', N'Bone Sword', N'1', N'0', N'0', N'7', N'4', N'5', N'8000', N'1', N'3', N'1', N'2500', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034002', N'Spatha', N'1', N'1', N'5', N'7', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034003', N'Orchid Sword', N'1', N'1', N'5', N'7', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034004', N'Bane Blade', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034005', N'Misericorde', N'1', N'1', N'5', N'7', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034006', N'Curtis Doom Witch Sword', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034007', N'Demon Witch Sword', N'1', N'1', N'5', N'7', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034008', N'Winter''s Heart', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034009', N'Tahelum', N'1', N'1', N'5', N'7', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034010', N'Avenger', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034011', N'Exceed', N'1', N'1', N'5', N'7', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034104', N'Delicate Bane Blade', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034106', N'Delicate Curtis Doom Witch Sword', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034108', N'Delicate Winter''s Heart', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034110', N'Delicate Avenger', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11034111', N'Exquisite Exceed', N'1', N'1', N'5', N'7', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035001', N'Bansi', N'1', N'1', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035002', N'Vanquish', N'1', N'1', N'3', N'7', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035003', N'Pendulum', N'1', N'1', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035004', N'Chrysaor', N'1', N'1', N'3', N'7', N'5', N'25', N'9000', N'1', N'3', N'1', N'2500', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035005', N'Mimang', N'1', N'1', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035006', N'Nigling', N'1', N'1', N'3', N'7', N'5', N'35', N'9000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035007', N'Acubens', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035008', N'Nagelring', N'1', N'1', N'3', N'7', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035009', N'Naegling', N'1', N'1', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035010', N'Kalabog', N'1', N'1', N'3', N'7', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035103', N'Delicate Pendulum', N'1', N'1', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035105', N'Delicate Illusion', N'1', N'1', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035107', N'Delicate Aquvence', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035109', N'Delicate Negling', N'1', N'1', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11035110', N'Exquisite Kalabog', N'1', N'1', N'3', N'7', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041001', N'Scythe', N'1', N'0', N'0', N'8', N'1', N'10', N'7000', N'0', N'0', N'1', N'2600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041002', N'Nordic Scythe', N'1', N'0', N'0', N'8', N'1', N'13', N'7000', N'0', N'0', N'1', N'2600', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041003', N'Jagged Scythe', N'1', N'0', N'0', N'8', N'1', N'16', N'7000', N'0', N'0', N'1', N'2600', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041004', N'Witch Scythe', N'1', N'0', N'0', N'8', N'1', N'19', N'7000', N'0', N'0', N'1', N'2600', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041005', N'Celt Scythe', N'1', N'0', N'0', N'8', N'1', N'22', N'7000', N'0', N'0', N'1', N'2600', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041006', N'Dusk Scythe', N'1', N'0', N'0', N'8', N'1', N'25', N'7000', N'0', N'0', N'1', N'2600', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041007', N'Battle Scythe', N'1', N'0', N'0', N'8', N'1', N'28', N'7000', N'0', N'0', N'1', N'2600', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041008', N'Barbed Scythe', N'1', N'0', N'0', N'8', N'1', N'31', N'7000', N'0', N'0', N'1', N'2600', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041009', N'Gothic Scythe', N'1', N'0', N'0', N'8', N'1', N'34', N'7000', N'0', N'0', N'1', N'2600', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041010', N'Crimson Scythe', N'1', N'0', N'0', N'8', N'1', N'37', N'7000', N'0', N'0', N'1', N'2600', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041011', N'Stella Scythe', N'1', N'0', N'0', N'8', N'1', N'40', N'7000', N'0', N'0', N'1', N'2600', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041012', N'Gloomy Scythe', N'1', N'0', N'0', N'8', N'1', N'43', N'7000', N'0', N'0', N'1', N'2600', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041013', N'Demonic Scythe', N'1', N'0', N'0', N'8', N'1', N'46', N'7000', N'0', N'0', N'1', N'2600', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041014', N'Scorching Scythe', N'1', N'0', N'0', N'8', N'1', N'49', N'7000', N'0', N'0', N'1', N'2600', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041015', N'Runic Scythe', N'1', N'0', N'0', N'8', N'1', N'52', N'7000', N'0', N'0', N'1', N'2600', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11041016', N'Tera Scythe', N'1', N'0', N'0', N'8', N'1', N'55', N'7000', N'0', N'0', N'1', N'2600', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042001', N'Scythe', N'1', N'0', N'0', N'8', N'2', N'11', N'7500', N'0', N'3', N'1', N'2600', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042002', N'Nordic Scythe', N'1', N'0', N'0', N'8', N'2', N'14', N'7500', N'0', N'3', N'1', N'2600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042003', N'Jagged Scythe', N'1', N'0', N'0', N'8', N'2', N'17', N'7500', N'0', N'3', N'1', N'2600', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042004', N'Witch Scythe', N'1', N'0', N'0', N'8', N'2', N'20', N'7500', N'0', N'3', N'1', N'2600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042005', N'Celt Scythe', N'1', N'0', N'0', N'8', N'2', N'23', N'7500', N'0', N'3', N'1', N'2600', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042006', N'Dusk Scythe', N'1', N'0', N'0', N'8', N'2', N'26', N'7500', N'0', N'3', N'1', N'2600', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042007', N'Battle Scythe', N'1', N'0', N'0', N'8', N'2', N'29', N'7500', N'0', N'3', N'1', N'2600', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042008', N'Barbed Scythe', N'1', N'0', N'0', N'8', N'2', N'32', N'7500', N'0', N'3', N'1', N'2600', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042009', N'Gothic Scythe', N'1', N'0', N'0', N'8', N'2', N'35', N'7500', N'0', N'3', N'1', N'2600', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042010', N'Crimson Scythe', N'1', N'0', N'0', N'8', N'2', N'38', N'7500', N'0', N'3', N'1', N'2600', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042011', N'Stella Scythe', N'1', N'0', N'0', N'8', N'2', N'41', N'7500', N'0', N'3', N'1', N'2600', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042012', N'Gloomy Scythe', N'1', N'0', N'0', N'8', N'2', N'44', N'7500', N'0', N'3', N'1', N'2600', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042013', N'Demonic Scythe', N'1', N'0', N'0', N'8', N'2', N'47', N'7500', N'0', N'3', N'1', N'2600', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042014', N'Scorching Scythe', N'1', N'0', N'0', N'8', N'2', N'50', N'7500', N'0', N'3', N'1', N'2600', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042015', N'Runic Scythe', N'1', N'0', N'0', N'8', N'2', N'53', N'7500', N'0', N'3', N'1', N'2600', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042016', N'Tera Scythe', N'1', N'0', N'0', N'8', N'2', N'56', N'7500', N'0', N'3', N'1', N'2600', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042101', N'Handy Scythe', N'1', N'0', N'0', N'8', N'2', N'5', N'7500', N'0', N'3', N'1', N'2500', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11042102', N'Scythe', N'1', N'0', N'0', N'8', N'2', N'8', N'7500', N'0', N'3', N'1', N'2500', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044001', N'Grey Phantom', N'1', N'1', N'5', N'8', N'4', N'10', N'8000', N'1', N'3', N'1', N'2600', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044002', N'Foereaper', N'1', N'1', N'5', N'8', N'4', N'15', N'8000', N'1', N'3', N'1', N'2600', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044003', N'Osprey', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044004', N'Dark Scythe', N'1', N'1', N'5', N'8', N'4', N'25', N'8000', N'1', N'3', N'1', N'2600', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044005', N'Wicked Claw', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044006', N'Angry Buzzard', N'1', N'1', N'5', N'8', N'4', N'35', N'8000', N'1', N'3', N'1', N'2600', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044007', N'Rosemary', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044008', N'Chaos', N'1', N'1', N'5', N'8', N'4', N'45', N'8000', N'1', N'3', N'1', N'2600', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044009', N'Albatros', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044010', N'Silence', N'1', N'1', N'5', N'8', N'4', N'55', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044103', N'Delicate Osprey', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044105', N'Delicate Wicked Claw', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044107', N'Delicate Rosemary', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044109', N'Delicate Albatros', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11044110', N'Exquisite Silence', N'1', N'1', N'5', N'8', N'4', N'60', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045001', N'Knight-Hag', N'1', N'1', N'3', N'8', N'5', N'15', N'9000', N'1', N'3', N'1', N'2600', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045002', N'Alhena', N'1', N'1', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045003', N'Death Scythe', N'1', N'1', N'3', N'8', N'5', N'25', N'9000', N'1', N'3', N'1', N'2600', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045004', N'Canine', N'1', N'1', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045005', N'Shubalt''s Hex', N'1', N'1', N'3', N'8', N'5', N'35', N'9000', N'1', N'3', N'1', N'2600', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045006', N'Axelus', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045007', N'Badb Catha', N'1', N'1', N'3', N'8', N'5', N'45', N'9000', N'1', N'3', N'1', N'2600', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045008', N'Freya', N'1', N'1', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045009', N'Sirpidium', N'1', N'1', N'3', N'8', N'5', N'55', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045102', N'Delicate Alhena', N'1', N'1', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045104', N'Delicate Canine', N'1', N'1', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045106', N'Delicate Axelus', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045108', N'Delicate Freya', N'1', N'1', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11045109', N'Exquisite Sirpidium', N'1', N'1', N'3', N'8', N'5', N'60', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051000', N'Practice Gauntlets', N'1', N'0', N'0', N'9', N'1', N'1', N'100000', N'0', N'0', N'1', N'2300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051001', N'Gauntlet', N'1', N'0', N'0', N'9', N'1', N'1', N'7000', N'0', N'0', N'1', N'2300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051002', N'Light Gauntlets', N'1', N'0', N'0', N'9', N'1', N'4', N'7000', N'0', N'0', N'1', N'2300', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051003', N'Low Gauntlets', N'1', N'0', N'0', N'9', N'1', N'7', N'7000', N'0', N'0', N'1', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051004', N'Metal Gauntlets', N'1', N'0', N'0', N'9', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051005', N'Buster Fist', N'1', N'0', N'0', N'9', N'1', N'13', N'7000', N'0', N'0', N'1', N'2300', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051006', N'Battle Gauntlets', N'1', N'0', N'0', N'9', N'1', N'16', N'7000', N'0', N'0', N'1', N'2300', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051007', N'Chain Gauntlets', N'1', N'0', N'0', N'9', N'1', N'19', N'7000', N'0', N'0', N'1', N'2300', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051008', N'Rigid Gauntlet', N'1', N'0', N'0', N'9', N'1', N'22', N'7000', N'0', N'0', N'1', N'2300', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051009', N'Jagged Knuckle', N'1', N'0', N'0', N'9', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051010', N'Lord Gauntlets', N'1', N'0', N'0', N'9', N'1', N'28', N'7000', N'0', N'0', N'1', N'2300', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051011', N'War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'31', N'7000', N'0', N'0', N'1', N'2300', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051012', N'Evil Gauntlets', N'1', N'0', N'0', N'9', N'1', N'34', N'7000', N'0', N'0', N'1', N'2300', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051013', N'Mighty Gauntlets', N'1', N'0', N'0', N'9', N'1', N'37', N'7000', N'0', N'0', N'1', N'2300', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051014', N'Nimbus Gauntlets', N'1', N'0', N'0', N'9', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051015', N'Ogre Gauntlet', N'1', N'0', N'0', N'9', N'1', N'43', N'7000', N'0', N'0', N'1', N'2300', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051016', N'Battle Fist', N'1', N'0', N'0', N'9', N'1', N'46', N'7000', N'0', N'0', N'1', N'2300', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051017', N'Iron Fist', N'1', N'0', N'0', N'9', N'1', N'49', N'7000', N'0', N'0', N'1', N'2300', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051018', N'Demon Fist', N'1', N'0', N'0', N'9', N'1', N'52', N'7000', N'0', N'0', N'1', N'2300', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11051019', N'War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052001', N'Gauntlet', N'1', N'0', N'0', N'9', N'2', N'2', N'7500', N'0', N'3', N'1', N'2300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052002', N'Light Gauntlets', N'1', N'0', N'0', N'9', N'2', N'5', N'7500', N'0', N'3', N'1', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052003', N'Low Gauntlets', N'1', N'0', N'0', N'9', N'2', N'8', N'7500', N'0', N'3', N'1', N'2300', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052004', N'Metal Gauntlets', N'1', N'0', N'0', N'9', N'2', N'11', N'7500', N'0', N'3', N'1', N'2300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052005', N'Buster Fist', N'1', N'0', N'0', N'9', N'2', N'14', N'7500', N'0', N'3', N'1', N'2300', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052006', N'Battle Gauntlets', N'1', N'0', N'0', N'9', N'2', N'17', N'7500', N'0', N'3', N'1', N'2300', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052007', N'Chain Gauntlets', N'1', N'0', N'0', N'9', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052008', N'Rigid Gauntlet', N'1', N'0', N'0', N'9', N'2', N'23', N'7500', N'0', N'3', N'1', N'2300', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052009', N'Jagged Knuckle', N'1', N'0', N'0', N'9', N'2', N'26', N'7500', N'0', N'3', N'1', N'2300', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052010', N'Lord Gauntlets', N'1', N'0', N'0', N'9', N'2', N'29', N'7500', N'0', N'3', N'1', N'2300', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052011', N'War Gauntlets', N'1', N'0', N'0', N'9', N'2', N'32', N'7500', N'0', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052012', N'Evil Gauntlets', N'1', N'0', N'0', N'9', N'2', N'35', N'7500', N'0', N'3', N'1', N'2300', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052013', N'Mighty Gauntlets', N'1', N'0', N'0', N'9', N'2', N'38', N'7500', N'0', N'3', N'1', N'2300', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052014', N'Nimbus Gauntlets', N'1', N'0', N'0', N'9', N'2', N'41', N'7500', N'0', N'3', N'1', N'2300', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052015', N'Ogre Gauntlet', N'1', N'0', N'0', N'9', N'2', N'44', N'7500', N'0', N'3', N'1', N'2300', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052016', N'Battle Fist', N'1', N'0', N'0', N'9', N'2', N'47', N'7500', N'0', N'3', N'1', N'2300', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052017', N'Iron Fist', N'1', N'0', N'0', N'9', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052018', N'Demon Fist', N'1', N'0', N'0', N'9', N'2', N'53', N'7500', N'0', N'3', N'1', N'2300', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11052019', N'War Gauntlets', N'1', N'0', N'0', N'9', N'2', N'56', N'7500', N'0', N'3', N'1', N'2300', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054001', N'Bone Gauntlets', N'1', N'0', N'0', N'9', N'4', N'5', N'8000', N'1', N'3', N'1', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054002', N'Howler', N'1', N'1', N'5', N'9', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054003', N'Envy', N'1', N'1', N'5', N'9', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054004', N'Blasted Gauntlet', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054005', N'Jade Gauntlets', N'1', N'1', N'5', N'9', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054006', N'Titan Arm', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054007', N'Black Rose', N'1', N'1', N'5', N'9', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054008', N'White Wolf', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054009', N'Spirit Keeper', N'1', N'1', N'5', N'9', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054010', N'Fiend Fist', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054011', N'Hammer Leech', N'1', N'1', N'5', N'9', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054104', N'Delicate Cursed War Gauntlet', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054106', N'Delicate Curtis Doom Gauntlet', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054108', N'Delicate White Wolf', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054110', N'Delicate Fiend Fist', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11054111', N'Exquisite Hammer Leech', N'1', N'1', N'5', N'9', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055001', N'Shark Skin', N'1', N'1', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055002', N'Wolf Tail', N'1', N'1', N'3', N'9', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055003', N'Godhand', N'1', N'1', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055004', N'Scavenger', N'1', N'1', N'3', N'9', N'5', N'25', N'9000', N'1', N'3', N'1', N'2300', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055005', N'Vex-Servant', N'1', N'1', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055006', N'War Crisis', N'1', N'1', N'3', N'9', N'5', N'35', N'9000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055007', N'Kornephoros', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055008', N'Skadi', N'1', N'1', N'3', N'9', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055009', N'Garum', N'1', N'1', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055010', N'Nejad', N'1', N'1', N'3', N'9', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055103', N'Delicate Godhand', N'1', N'1', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055105', N'Delicate Vex-Servant', N'1', N'1', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055107', N'Delicate Kornephoros', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055109', N'Delicate Ifrit', N'1', N'1', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11055110', N'Exquisite Nejad', N'1', N'1', N'3', N'9', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061001', N'Claw', N'1', N'0', N'0', N'10', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061002', N'Talons', N'1', N'0', N'0', N'10', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061003', N'Steel Claw', N'1', N'0', N'0', N'10', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061004', N'War Claw', N'1', N'0', N'0', N'10', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061005', N'Tickler', N'1', N'0', N'0', N'10', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061006', N'Battle Claw', N'1', N'0', N'0', N'10', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061007', N'Wild Claw', N'1', N'0', N'0', N'10', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061008', N'Fatal Claw', N'1', N'0', N'0', N'10', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061009', N'Scissor Claw', N'1', N'0', N'0', N'10', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061010', N'Iron Claw', N'1', N'0', N'0', N'10', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061011', N'Valiant Claw', N'1', N'0', N'0', N'10', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061012', N'Avenging Claw', N'1', N'0', N'0', N'10', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061013', N'Demon Claw', N'1', N'0', N'0', N'10', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061014', N'Blade Talon', N'1', N'0', N'0', N'10', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061015', N'Biting Talon', N'1', N'0', N'0', N'10', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11061016', N'Zapper Claw', N'1', N'0', N'0', N'10', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062001', N'Claw', N'1', N'0', N'0', N'10', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062002', N'Talons', N'1', N'0', N'0', N'10', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062003', N'Steel Claw', N'1', N'0', N'0', N'10', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062004', N'War Claw', N'1', N'0', N'0', N'10', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062005', N'Tickler', N'1', N'0', N'0', N'10', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062006', N'Battle Claw', N'1', N'0', N'0', N'10', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062007', N'Wild Claw', N'1', N'0', N'0', N'10', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062008', N'Fatal Claw', N'1', N'0', N'0', N'10', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062009', N'Scissor Claw', N'1', N'0', N'0', N'10', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062010', N'Iron Claw', N'1', N'0', N'0', N'10', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062011', N'Valiant Claw', N'1', N'0', N'0', N'10', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062012', N'Avenging Claw', N'1', N'0', N'0', N'10', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062013', N'Demon Claw', N'1', N'0', N'0', N'10', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062014', N'Blade Talon', N'1', N'0', N'0', N'10', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062015', N'Biting Talon', N'1', N'0', N'0', N'10', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062016', N'Zapper Claw', N'1', N'0', N'0', N'10', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062101', N'Bone Claw', N'1', N'0', N'0', N'10', N'2', N'5', N'7500', N'0', N'3', N'1', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11062102', N'Howling Claw', N'1', N'0', N'0', N'10', N'2', N'8', N'7500', N'0', N'3', N'1', N'2300', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064001', N'Ghost Claw', N'1', N'1', N'5', N'10', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064002', N'Pride', N'1', N'1', N'5', N'10', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064003', N'Gleaming Claw', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064004', N'Cestus', N'1', N'1', N'5', N'10', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064005', N'Shackled Talon', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064006', N'Ogre Mitt', N'1', N'1', N'5', N'10', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064007', N'Mithril Claw', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064008', N'Chimera', N'1', N'1', N'5', N'10', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064009', N'Storm Rider', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064010', N'Dual Ghost', N'1', N'1', N'5', N'10', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064103', N'Delicate Cursed War Claw', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064105', N'Delicate Curtis Doom Claw', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064107', N'Delicate Mithril Claw', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064109', N'Delicate Storm Rider', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11064110', N'Exquisite Dual Ghost', N'1', N'1', N'5', N'10', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065001', N'Agni', N'1', N'1', N'3', N'10', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065002', N'Mangler', N'1', N'1', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065003', N'Dark Crow', N'1', N'1', N'3', N'10', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065004', N'Shadow-Killer', N'1', N'1', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065005', N'Kaiser Knuckle', N'1', N'1', N'3', N'10', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065006', N'Wraith Claw', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065007', N'Deneb', N'1', N'1', N'3', N'10', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065008', N'Typhon', N'1', N'1', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065009', N'Radeath', N'1', N'1', N'3', N'10', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065102', N'Delicate Mangler', N'1', N'1', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065104', N'Delicate Shadow-Killer', N'1', N'1', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065106', N'Delicate Wraith Claw', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065108', N'Delicate Typhon', N'1', N'1', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11065109', N'Exquisite Radeath', N'1', N'1', N'3', N'10', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071000', N'Training Revolver ', N'1', N'0', N'0', N'11', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071001', N'Derringer', N'1', N'0', N'0', N'11', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071002', N'Auto Revolver', N'1', N'0', N'0', N'11', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071003', N'Light Revolver', N'1', N'0', N'0', N'11', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071004', N'Pepperbox', N'1', N'0', N'0', N'11', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071005', N'Flintlock', N'1', N'0', N'0', N'11', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071006', N'Blazing Revolver', N'1', N'0', N'0', N'11', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071007', N'Stinger', N'1', N'0', N'0', N'11', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071008', N'Deck Pistol', N'1', N'0', N'0', N'11', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071009', N'Blaster', N'1', N'0', N'0', N'11', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071010', N'Burning Revolver', N'1', N'0', N'0', N'11', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071011', N'Gauss Revolver', N'1', N'0', N'0', N'11', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071012', N'Imperial Revolver', N'1', N'0', N'0', N'11', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071013', N'Magnum Revolver', N'1', N'0', N'0', N'11', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071014', N'Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071015', N'Matchlock', N'1', N'0', N'0', N'11', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071016', N'Chinook Revolver', N'1', N'0', N'0', N'11', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071017', N'Slugger', N'1', N'0', N'0', N'11', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071018', N'Precise Pistol', N'1', N'0', N'0', N'11', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11071019', N'Nebula Revolver', N'1', N'0', N'0', N'11', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072001', N'Derringer', N'1', N'0', N'0', N'11', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072002', N'Auto Revolver', N'1', N'0', N'0', N'11', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072003', N'Light Revolver', N'1', N'0', N'0', N'11', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072004', N'Pepperbox', N'1', N'0', N'0', N'11', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072005', N'Flintlock', N'1', N'0', N'0', N'11', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072006', N'Blazing Revolver', N'1', N'0', N'0', N'11', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072007', N'Stinger', N'1', N'0', N'0', N'11', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072008', N'Deck Pistol', N'1', N'0', N'0', N'11', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072009', N'Blaster', N'1', N'0', N'0', N'11', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072010', N'Burning Revolver', N'1', N'0', N'0', N'11', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072011', N'Gauss Revolver', N'1', N'0', N'0', N'11', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072012', N'Imperial Revolver', N'1', N'0', N'0', N'11', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072013', N'Magnum Revolver', N'1', N'0', N'0', N'11', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072014', N'Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072015', N'Matchlock', N'1', N'0', N'0', N'11', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072016', N'Chinook Revolver', N'1', N'0', N'0', N'11', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072017', N'Slugger', N'1', N'0', N'0', N'11', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072018', N'Precise Pistol', N'1', N'0', N'0', N'11', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11072019', N'Nebula Revolver', N'1', N'0', N'0', N'11', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074001', N'Peashooter', N'1', N'0', N'0', N'11', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074002', N'Bolt Action', N'1', N'1', N'5', N'11', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074003', N'Six Shooter', N'1', N'1', N'5', N'11', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074004', N'Spitfire', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074005', N'Engraved Pistol', N'1', N'1', N'5', N'11', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074006', N'Pearl-Handled Pistol', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074007', N'Burning Worm', N'1', N'1', N'5', N'11', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074008', N'Dirge', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074009', N'Hand Cannon', N'1', N'1', N'5', N'11', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074010', N'Beretto', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074011', N'Dark Raven', N'1', N'1', N'5', N'11', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074104', N'Delicate Spitfire', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074106', N'Delicate Straight Shooter', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074108', N'Delicate Dirge', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074110', N'Delicate Beretto', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11074111', N'Exquisite Dark Raven', N'1', N'1', N'5', N'11', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075001', N'Counter-Attack', N'1', N'1', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075002', N'Peacemaker', N'1', N'1', N'3', N'11', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075003', N'Sharp Shooter', N'1', N'1', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075004', N'.44 Revolver', N'1', N'1', N'3', N'11', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075005', N'Salamander ', N'1', N'1', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075006', N'Dune Falcon', N'1', N'1', N'3', N'11', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075007', N'Valentine ', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075008', N'King Cobra', N'1', N'1', N'3', N'11', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075009', N'Webley', N'1', N'1', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075010', N'Chrome', N'1', N'1', N'3', N'11', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075103', N'Delicate Sharp Shooter', N'1', N'1', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075105', N'Delicate Salamander', N'1', N'1', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075107', N'Delicate Valentine', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075109', N'Delicate Magnum', N'1', N'1', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11075110', N'Exquisite Chrome', N'1', N'1', N'3', N'11', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081000', N'Training Musket', N'1', N'0', N'0', N'12', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081001', N'Kentucky Musket', N'1', N'0', N'0', N'12', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081002', N'Mighty Musket', N'1', N'0', N'0', N'12', N'1', N'16', N'7000', N'0', N'0', N'1', N'2200', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081003', N'Roaring Musket', N'1', N'0', N'0', N'12', N'1', N'19', N'7000', N'0', N'0', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081004', N'Sharps Musket', N'1', N'0', N'0', N'12', N'1', N'22', N'7000', N'0', N'0', N'1', N'2200', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081005', N'Blazing Musket', N'1', N'0', N'0', N'12', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081006', N'Blunderbuss', N'1', N'0', N'0', N'12', N'1', N'28', N'7000', N'0', N'0', N'1', N'2200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081007', N'Wild Musket', N'1', N'0', N'0', N'12', N'1', N'31', N'7000', N'0', N'0', N'1', N'2200', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081008', N'Ornate Rifle', N'1', N'0', N'0', N'12', N'1', N'34', N'7000', N'0', N'0', N'1', N'2200', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081009', N'Rumanian Carbine', N'1', N'0', N'0', N'12', N'1', N'37', N'7000', N'0', N'0', N'1', N'2200', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081010', N'Searing Musket', N'1', N'0', N'0', N'12', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081011', N'Breech-Loader', N'1', N'0', N'0', N'12', N'1', N'43', N'7000', N'0', N'0', N'1', N'2200', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081012', N'Wheellock Rifle', N'1', N'0', N'0', N'12', N'1', N'46', N'7000', N'0', N'0', N'1', N'2200', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081013', N'Coach Gun', N'1', N'0', N'0', N'12', N'1', N'49', N'7000', N'0', N'0', N'1', N'2200', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081014', N'Juarez Special', N'1', N'0', N'0', N'12', N'1', N'52', N'7000', N'0', N'0', N'1', N'2200', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11081015', N'Pult Musket', N'1', N'0', N'0', N'12', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082001', N'Musket', N'1', N'0', N'0', N'12', N'2', N'11', N'7500', N'0', N'3', N'1', N'2200', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082002', N'Kentucky Musket', N'1', N'0', N'0', N'12', N'2', N'14', N'7500', N'0', N'3', N'1', N'2200', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082003', N'Mighty Musket', N'1', N'0', N'0', N'12', N'2', N'17', N'7500', N'0', N'3', N'1', N'2200', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082004', N'Roaring Musket', N'1', N'0', N'0', N'12', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082005', N'Sharps Musket', N'1', N'0', N'0', N'12', N'2', N'23', N'7500', N'0', N'3', N'1', N'2200', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082006', N'Blazing Musket', N'1', N'0', N'0', N'12', N'2', N'26', N'7500', N'0', N'3', N'1', N'2200', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082007', N'Blunderbuss', N'1', N'0', N'0', N'12', N'2', N'29', N'7500', N'0', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082008', N'Wild Musket', N'1', N'0', N'0', N'12', N'2', N'32', N'7500', N'0', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082009', N'Ornate Rifle', N'1', N'0', N'0', N'12', N'2', N'35', N'7500', N'0', N'3', N'1', N'2200', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082010', N'Rumanian Carbine', N'1', N'0', N'0', N'12', N'2', N'38', N'7500', N'0', N'3', N'1', N'2200', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082011', N'Searing Musket', N'1', N'0', N'0', N'12', N'2', N'41', N'7500', N'0', N'3', N'1', N'2200', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082012', N'Breech-Loader', N'1', N'0', N'0', N'12', N'2', N'44', N'7500', N'0', N'3', N'1', N'2200', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082013', N'Wheellock Rifle', N'1', N'0', N'0', N'12', N'2', N'47', N'7500', N'0', N'3', N'1', N'2200', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082014', N'Coach Gun', N'1', N'0', N'0', N'12', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082015', N'Juarez Special', N'1', N'0', N'0', N'12', N'2', N'53', N'7500', N'0', N'3', N'1', N'2200', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082016', N'Pult Musket', N'1', N'0', N'0', N'12', N'2', N'56', N'7500', N'0', N'3', N'1', N'2200', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082101', N'Handy Musket', N'1', N'0', N'0', N'12', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11082102', N'Bolt Musket', N'1', N'0', N'0', N'12', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084001', N'Lever Action', N'1', N'1', N'5', N'12', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084002', N'Enfield', N'1', N'1', N'5', N'12', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084003', N'Saddleback', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084004', N'Side Winder', N'1', N'1', N'5', N'12', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084005', N'Benelli', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084006', N'Fire Cracker', N'1', N'1', N'5', N'12', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084007', N'Blessed Musket', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084008', N'Fever-Shot', N'1', N'1', N'5', N'12', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084009', N'Contractor', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084010', N'The Veteran', N'1', N'1', N'5', N'12', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084103', N'Delicate Saddleback', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084105', N'Delicate Benelli', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084107', N'Delicate Blessed Musket', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084109', N'Delicate Contractor', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11084110', N'Exquisite The Veteran', N'1', N'1', N'5', N'12', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085001', N'Hawkeye', N'1', N'1', N'3', N'12', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085002', N'Sonic Boom', N'1', N'1', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085003', N'Eraser', N'1', N'1', N'3', N'12', N'5', N'25', N'9000', N'1', N'3', N'1', N'2200', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085004', N'Liberator', N'1', N'1', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085005', N'Deluxe Carbine', N'1', N'1', N'3', N'12', N'5', N'35', N'9000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085006', N'Hell Fire', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085007', N'Black Rose', N'1', N'1', N'3', N'12', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085008', N'Conqueror', N'1', N'1', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085009', N'Serpent', N'1', N'1', N'3', N'12', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085102', N'Delicate Sonic Boom', N'1', N'1', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085104', N'Delicate Liberator', N'1', N'1', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085106', N'Delicate Hell Fire', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085108', N'Delicate Conqueror', N'1', N'1', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11085109', N'Exquisite Serpent', N'1', N'1', N'3', N'12', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091000', N'Practice Twin Swords', N'1', N'0', N'0', N'55', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091001', N'Cracked Twin Swords', N'1', N'0', N'0', N'55', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091002', N'Disrupt Twin Swords', N'1', N'0', N'0', N'55', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091003', N'Fragmentary Twin Swords', N'1', N'0', N'0', N'55', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091004', N'Asymmetric Twin Swords', N'1', N'0', N'0', N'55', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091005', N'Distinctive Twin Swords', N'1', N'0', N'0', N'55', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091006', N'Duplicate Twin Swords', N'1', N'0', N'0', N'55', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091007', N'Identical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091008', N'Symmetrical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091009', N'Congenial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091010', N'Vibrant Twin Swords', N'1', N'0', N'0', N'55', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091011', N'Crucial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091012', N'Pessimistic Twin Swords', N'1', N'0', N'0', N'55', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091013', N'Rigid Twin Swords', N'1', N'0', N'0', N'55', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091014', N'Harsh Twin Swords', N'1', N'0', N'0', N'55', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091015', N'Frantical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091016', N'Dormant Twin Swords', N'1', N'0', N'0', N'55', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091017', N'Revengers Twin Swords', N'1', N'0', N'0', N'55', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091018', N'Transient Twin Swords', N'1', N'0', N'0', N'55', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11091019', N'Destructive Twin Swords', N'1', N'0', N'0', N'55', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092001', N'Cracked Twin Swords', N'1', N'0', N'0', N'55', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092002', N'Disrupt Twin Swords', N'1', N'0', N'0', N'55', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092003', N'Fragmentary Twin Swords', N'1', N'0', N'0', N'55', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092004', N'Asymmetric Twin Swords', N'1', N'0', N'0', N'55', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092005', N'Distinctive Twin Swords', N'1', N'0', N'0', N'55', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092006', N'Duplicate Twin Swords', N'1', N'0', N'0', N'55', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092007', N'Identical Twin Swords', N'1', N'0', N'0', N'55', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092008', N'Symmetrical Twin Swords', N'1', N'0', N'0', N'55', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092009', N'Congenial Twin Swords', N'1', N'0', N'0', N'55', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092010', N'Vibrant Twin Swords', N'1', N'0', N'0', N'55', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092011', N'Crucial Twin Swords', N'1', N'0', N'0', N'55', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092012', N'Pessimistic Twin Swords', N'1', N'0', N'0', N'55', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092013', N'Rigid Twin Swords', N'1', N'0', N'0', N'55', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092014', N'Harsh Twin Swords', N'1', N'0', N'0', N'55', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092015', N'Frantical Twin Swords', N'1', N'0', N'0', N'55', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092016', N'Dormant Twin Swords', N'1', N'0', N'0', N'55', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092017', N'Revengers Twin Swords', N'1', N'0', N'0', N'55', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092018', N'Transient Twin Swords', N'1', N'0', N'0', N'55', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11092019', N'Destructive Twin Swords', N'1', N'0', N'0', N'55', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094001', N'Ailantus', N'1', N'0', N'0', N'55', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094002', N'Ramnus', N'1', N'1', N'5', N'55', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094003', N'Diospiros', N'1', N'1', N'5', N'55', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094004', N'Illex', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094005', N'Actinidia', N'1', N'1', N'5', N'55', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094006', N'Betula', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094007', N'Prunus', N'1', N'1', N'5', N'55', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094008', N'Kapainus', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094009', N'Vitis', N'1', N'1', N'5', N'55', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094010', N'Ribeth', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094011', N'Strobe', N'1', N'1', N'5', N'55', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094104', N'Delicate Illex', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094106', N'Delicate Betula', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094108', N'Delicate Kapainus', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094110', N'Delicate Ribeth', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11094111', N'Exquisite Strobe', N'1', N'1', N'5', N'55', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095001', N'Ronisera', N'1', N'1', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095002', N'Laisium', N'1', N'1', N'3', N'55', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095003', N'Castanopsis', N'1', N'1', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095004', N'Cudrania', N'1', N'1', N'3', N'55', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095005', N'Yuonimus', N'1', N'1', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095006', N'Deucia', N'1', N'1', N'3', N'55', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095007', N'Kornus', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095008', N'Paderia', N'1', N'1', N'3', N'55', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095009', N'Acer', N'1', N'1', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095010', N'Lithido', N'1', N'1', N'3', N'55', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095103', N'Delicate Castanopsis', N'1', N'1', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095105', N'Delicate Yuonimus', N'1', N'1', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095107', N'Delicate Kornus', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095109', N'Delicate Acer', N'1', N'1', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11095110', N'Exquisite Lithido', N'1', N'1', N'3', N'55', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111000', N'Practice Glaive', N'1', N'0', N'0', N'56', N'1', N'1', N'100000', N'0', N'0', N'1', N'2500', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111001', N'Chaotic Glaive', N'1', N'0', N'0', N'56', N'1', N'1', N'7000', N'0', N'0', N'1', N'2500', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111002', N'Divine Glaive', N'1', N'0', N'0', N'56', N'1', N'4', N'7000', N'0', N'0', N'1', N'2500', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111003', N'Glitters Glaive', N'1', N'0', N'0', N'56', N'1', N'7', N'7000', N'0', N'0', N'1', N'2500', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111004', N'Twilight Glaive', N'1', N'0', N'0', N'56', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111005', N'Edge Glaive', N'1', N'0', N'0', N'56', N'1', N'13', N'7000', N'0', N'0', N'1', N'2500', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111006', N'Modest Glaive', N'1', N'0', N'0', N'56', N'1', N'16', N'7000', N'0', N'0', N'1', N'2500', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111007', N'Mighty Glaive', N'1', N'0', N'0', N'56', N'1', N'19', N'7000', N'0', N'0', N'1', N'2500', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111008', N'Vested Glaive', N'1', N'0', N'0', N'56', N'1', N'22', N'7000', N'0', N'0', N'1', N'2500', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111009', N'Adept Glaive', N'1', N'0', N'0', N'56', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111010', N'Shrewd Glaive', N'1', N'0', N'0', N'56', N'1', N'28', N'7000', N'0', N'0', N'1', N'2500', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111011', N'Avent Glaive', N'1', N'0', N'0', N'56', N'1', N'31', N'7000', N'0', N'0', N'1', N'2500', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111012', N'Precious Glaive', N'1', N'0', N'0', N'56', N'1', N'34', N'7000', N'0', N'0', N'1', N'2500', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111013', N'Astute Glaive', N'1', N'0', N'0', N'56', N'1', N'37', N'7000', N'0', N'0', N'1', N'2500', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111014', N'Ardent Glaive', N'1', N'0', N'0', N'56', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111015', N'Intense Glaive', N'1', N'0', N'0', N'56', N'1', N'43', N'7000', N'0', N'0', N'1', N'2500', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111016', N'Tanned Glaive', N'1', N'0', N'0', N'56', N'1', N'46', N'7000', N'0', N'0', N'1', N'2500', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111017', N'Permanent Glaive', N'1', N'0', N'0', N'56', N'1', N'49', N'7000', N'0', N'0', N'1', N'2500', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111018', N'Fever Glaive', N'1', N'0', N'0', N'56', N'1', N'52', N'7000', N'0', N'0', N'1', N'2500', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11111019', N'Zucky Glaive', N'1', N'0', N'0', N'56', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112001', N'Chaotic Glaive', N'1', N'0', N'0', N'56', N'2', N'2', N'7500', N'0', N'3', N'1', N'2500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112002', N'Divine Glaive', N'1', N'0', N'0', N'56', N'2', N'5', N'7500', N'0', N'3', N'1', N'2500', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112003', N'Glitters Glaive', N'1', N'0', N'0', N'56', N'2', N'8', N'7500', N'0', N'3', N'1', N'2500', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112004', N'Twilight Glaive', N'1', N'0', N'0', N'56', N'2', N'11', N'7500', N'0', N'3', N'1', N'2500', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112005', N'Edge Glaive', N'1', N'0', N'0', N'56', N'2', N'14', N'7500', N'0', N'3', N'1', N'2500', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112006', N'Modest Glaive', N'1', N'0', N'0', N'56', N'2', N'17', N'7500', N'0', N'3', N'1', N'2500', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112007', N'Mighty Glaive', N'1', N'0', N'0', N'56', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112008', N'Vested Glaive', N'1', N'0', N'0', N'56', N'2', N'23', N'7500', N'0', N'3', N'1', N'2500', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112009', N'Adept Glaive', N'1', N'0', N'0', N'56', N'2', N'26', N'7500', N'0', N'3', N'1', N'2500', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112010', N'Shrewd Glaive', N'1', N'0', N'0', N'56', N'2', N'29', N'7500', N'0', N'3', N'1', N'2500', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112011', N'Avent Glaive', N'1', N'0', N'0', N'56', N'2', N'32', N'7500', N'0', N'3', N'1', N'2500', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112012', N'Precious Glaive', N'1', N'0', N'0', N'56', N'2', N'35', N'7500', N'0', N'3', N'1', N'2500', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112013', N'Astute Glaive', N'1', N'0', N'0', N'56', N'2', N'38', N'7500', N'0', N'3', N'1', N'2500', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112014', N'Ardent Glaive', N'1', N'0', N'0', N'56', N'2', N'41', N'7500', N'0', N'3', N'1', N'2500', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112015', N'Intense Glaive', N'1', N'0', N'0', N'56', N'2', N'44', N'7500', N'0', N'3', N'1', N'2500', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112016', N'Tanned Glaive', N'1', N'0', N'0', N'56', N'2', N'47', N'7500', N'0', N'3', N'1', N'2500', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112017', N'Permanent Glaive', N'1', N'0', N'0', N'56', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112018', N'Fever Glaive', N'1', N'0', N'0', N'56', N'2', N'53', N'7500', N'0', N'3', N'1', N'2500', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11112019', N'Zucky Glaive', N'1', N'0', N'0', N'56', N'2', N'56', N'7500', N'0', N'3', N'1', N'2500', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114001', N'Aeumops', N'1', N'0', N'0', N'56', N'4', N'5', N'8000', N'1', N'3', N'1', N'2500', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114002', N'Peramequinum', N'1', N'1', N'5', N'56', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114003', N'Hippocideridae', N'1', N'1', N'5', N'56', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114004', N'Juvatus', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114005', N'Leucogaster', N'1', N'1', N'5', N'56', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114006', N'Aserodon', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114007', N'Rapinesqui', N'1', N'1', N'5', N'56', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114008', N'Marianus', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114009', N'Shirof Terra', N'1', N'1', N'5', N'56', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114010', N'Megarotis', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114011', N'Plekotooth', N'1', N'1', N'5', N'56', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114104', N'Delicate Juvatus', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114106', N'Delicate Aserodon', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114108', N'Delicate Marianus', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114110', N'Delicate Megarotis', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11114111', N'Exquisite Plekotooth', N'1', N'1', N'5', N'56', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115001', N'Borealis', N'1', N'1', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115002', N'Pormosus', N'1', N'1', N'3', N'56', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115003', N'Seminolus', N'1', N'1', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115004', N'Philotis', N'1', N'1', N'3', N'56', N'5', N'25', N'9000', N'1', N'3', N'1', N'2500', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115005', N'Pipistrelus', N'1', N'1', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115006', N'Gigas', N'1', N'1', N'3', N'56', N'5', N'35', N'9000', N'1', N'3', N'1', N'2500', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115007', N'Megarophila', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115008', N'Cinereus', N'1', N'1', N'3', N'56', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115009', N'Noctivegans', N'1', N'1', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115010', N'Kairoptera', N'1', N'1', N'3', N'56', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115103', N'Delicate Seminolus', N'1', N'1', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115105', N'Delicate Pipistrelus', N'1', N'1', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115107', N'Delicate Megarophila', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115109', N'Delicate Noctivegans', N'1', N'1', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11115110', N'Exquisite Kairoptera', N'1', N'1', N'3', N'56', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131000', N'Practice Demon Hands', N'1', N'0', N'0', N'57', N'1', N'1', N'100000', N'0', N'0', N'1', N'2300', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131001', N'Archaic Demon Hands', N'1', N'0', N'0', N'57', N'1', N'1', N'7000', N'0', N'0', N'1', N'2300', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131002', N'Scars Demon Hands', N'1', N'0', N'0', N'57', N'1', N'4', N'7000', N'0', N'0', N'1', N'2300', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131003', N'Primitive Demon Hands', N'1', N'0', N'0', N'57', N'1', N'7', N'7000', N'0', N'0', N'1', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131004', N'Binding Demon Hands', N'1', N'0', N'0', N'57', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131005', N'Compact Demon Hands', N'1', N'0', N'0', N'57', N'1', N'13', N'7000', N'0', N'0', N'1', N'2300', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131006', N'Colossal Demon Hands', N'1', N'0', N'0', N'57', N'1', N'16', N'7000', N'0', N'0', N'1', N'2300', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131007', N'Formidable Demon Hands', N'1', N'0', N'0', N'57', N'1', N'19', N'7000', N'0', N'0', N'1', N'2300', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131008', N'Flawless Demon Hands', N'1', N'0', N'0', N'57', N'1', N'22', N'7000', N'0', N'0', N'1', N'2300', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131009', N'Robust Demon Hands', N'1', N'0', N'0', N'57', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131010', N'Bulk Demon Hands', N'1', N'0', N'0', N'57', N'1', N'28', N'7000', N'0', N'0', N'1', N'2300', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131011', N'Frexius Demon Hands', N'1', N'0', N'0', N'57', N'1', N'31', N'7000', N'0', N'0', N'1', N'2300', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131012', N'Vast Demon Hands', N'1', N'0', N'0', N'57', N'1', N'34', N'7000', N'0', N'0', N'1', N'2300', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131013', N'Harsh Demon Hands', N'1', N'0', N'0', N'57', N'1', N'37', N'7000', N'0', N'0', N'1', N'2300', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131014', N'Immense Demon Hands', N'1', N'0', N'0', N'57', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131015', N'Barbaric Demon Hands', N'1', N'0', N'0', N'57', N'1', N'43', N'7000', N'0', N'0', N'1', N'2300', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131016', N'Herz Demon Hands', N'1', N'0', N'0', N'57', N'1', N'46', N'7000', N'0', N'0', N'1', N'2300', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131017', N'Punch Demon Hands', N'1', N'0', N'0', N'57', N'1', N'49', N'7000', N'0', N'0', N'1', N'2300', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131018', N'Slaves Demon Hands', N'1', N'0', N'0', N'57', N'1', N'52', N'7000', N'0', N'0', N'1', N'2300', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11131019', N'Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132001', N'Archaic Demon Hands', N'1', N'0', N'0', N'57', N'2', N'2', N'7500', N'0', N'3', N'1', N'2300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132002', N'Scars Demon Hands', N'1', N'0', N'0', N'57', N'2', N'5', N'7500', N'0', N'3', N'1', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132003', N'Primitive Demon Hands', N'1', N'0', N'0', N'57', N'2', N'8', N'7500', N'0', N'3', N'1', N'2300', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132004', N'Binding Demon Hands', N'1', N'0', N'0', N'57', N'2', N'11', N'7500', N'0', N'3', N'1', N'2300', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132005', N'Compact Demon Hands', N'1', N'0', N'0', N'57', N'2', N'14', N'7500', N'0', N'3', N'1', N'2300', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132006', N'Colossal Demon Hands', N'1', N'0', N'0', N'57', N'2', N'17', N'7500', N'0', N'3', N'1', N'2300', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132007', N'Formidable Demon Hands', N'1', N'0', N'0', N'57', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132008', N'Flawless Demon Hands', N'1', N'0', N'0', N'57', N'2', N'23', N'7500', N'0', N'3', N'1', N'2300', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132009', N'Robust Demon Hands', N'1', N'0', N'0', N'57', N'2', N'26', N'7500', N'0', N'3', N'1', N'2300', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132010', N'Bulk Demon Hands', N'1', N'0', N'0', N'57', N'2', N'29', N'7500', N'0', N'3', N'1', N'2300', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132011', N'Frexius Demon Hands', N'1', N'0', N'0', N'57', N'2', N'32', N'7500', N'0', N'3', N'1', N'2300', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132012', N'Vast Demon Hands', N'1', N'0', N'0', N'57', N'2', N'35', N'7500', N'0', N'3', N'1', N'2300', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132013', N'Harsh Demon Hands', N'1', N'0', N'0', N'57', N'2', N'38', N'7500', N'0', N'3', N'1', N'2300', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132014', N'Immense Demon Hands', N'1', N'0', N'0', N'57', N'2', N'41', N'7500', N'0', N'3', N'1', N'2300', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132015', N'Barbaric Demon Hands', N'1', N'0', N'0', N'57', N'2', N'44', N'7500', N'0', N'3', N'1', N'2300', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132016', N'Herz Demon Hands', N'1', N'0', N'0', N'57', N'2', N'47', N'7500', N'0', N'3', N'1', N'2300', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132017', N'Punch Demon Hands', N'1', N'0', N'0', N'57', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132018', N'Slaves Demon Hands', N'1', N'0', N'0', N'57', N'2', N'53', N'7500', N'0', N'3', N'1', N'2300', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11132019', N'Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'2', N'56', N'7500', N'0', N'3', N'1', N'2300', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134001', N'Lepture', N'1', N'0', N'0', N'57', N'4', N'5', N'8000', N'1', N'3', N'1', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134002', N'Malpinus', N'1', N'1', N'5', N'57', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134003', N'Adustus', N'1', N'1', N'5', N'57', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134004', N'Pumosus', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134005', N'Hesperius', N'1', N'1', N'5', N'57', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134006', N'Infuscus', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134007', N'Jabanikus', N'1', N'1', N'5', N'57', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134008', N'Premaebus', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134009', N'Sumatransis', N'1', N'1', N'5', N'57', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134010', N'Dookunensis', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134011', N'Diceros', N'1', N'1', N'5', N'57', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134104', N'Delicate Pumosus', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134106', N'Delicate Infuscus', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134108', N'Delicate Premaebus', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134110', N'Delicate Dookunensis', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11134111', N'Exquisite Diceros', N'1', N'1', N'5', N'57', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135001', N'Aureus', N'1', N'1', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135002', N'Aljerensis', N'1', N'1', N'3', N'57', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135003', N'Antus', N'1', N'1', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135004', N'Vea', N'1', N'1', N'3', N'57', N'5', N'25', N'9000', N'1', N'3', N'1', N'2300', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135005', N'Crusemani', N'1', N'1', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135006', N'Indicus', N'1', N'1', N'3', N'57', N'5', N'35', N'9000', N'1', N'3', N'1', N'2300', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135007', N'Rupaster', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135008', N'Naria', N'1', N'1', N'3', N'57', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135009', N'Liparius', N'1', N'1', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135010', N'Bison', N'1', N'1', N'3', N'57', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135103', N'Delicate Antus', N'1', N'1', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135105', N'Delicate Crusemani', N'1', N'1', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135107', N'Delicate Rupaster', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135109', N'Delicate Liparius', N'1', N'1', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11135110', N'Exquisite Bison', N'1', N'1', N'3', N'57', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151000', N'Practice Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151001', N'Classic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151002', N'Unsigned Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151003', N'Untrained Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151004', N'Qualified Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151005', N'Preeminent Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151006', N'Celebrated Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151007', N'Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151008', N'Bustling Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151009', N'Versatile Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151010', N'Adroit Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151011', N'Brisk Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151012', N'Integral Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151013', N'Avid Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151014', N'Sleek Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151015', N'Rain Rose Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151016', N'Bited Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151017', N'Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151018', N'Stressed Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11151019', N'Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152001', N'Classic Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152002', N'Unsigned Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152003', N'Untrained Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152004', N'Qualified Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152005', N'Preeminent Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152006', N'Celebrated Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152007', N'Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152008', N'Bustling Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152009', N'Versatile Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152010', N'Adroit Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152011', N'Brisk Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152012', N'Integral Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152013', N'Avid Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152014', N'Sleek Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152015', N'Rain Rose Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152016', N'Bited Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152017', N'Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152018', N'Stressed Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11152019', N'Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154001', N'Polifemus', N'1', N'0', N'0', N'58', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154002', N'Repidokelis', N'1', N'1', N'5', N'58', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154003', N'Kelodina', N'1', N'1', N'5', N'58', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154004', N'Clemis', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154005', N'Testudinidae', N'1', N'1', N'5', N'58', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154006', N'Crisemis', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154007', N'Kelidra', N'1', N'1', N'5', N'58', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154008', N'Sudaemidura', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154009', N'Kinosternon', N'1', N'1', N'5', N'58', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154010', N'Onata', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154011', N'Musk Bag', N'1', N'1', N'5', N'58', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154104', N'Delicate Clemis', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154106', N'Delicate Crisemis', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154108', N'Delicate Sudaemidura', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154110', N'Delicate Onata', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11154111', N'Exquisite Musk Bag', N'1', N'1', N'5', N'58', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155001', N'Terapene', N'1', N'1', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155002', N'Malaclemis', N'1', N'1', N'3', N'58', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155003', N'Lactopris', N'1', N'1', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155004', N'Kelis', N'1', N'1', N'3', N'58', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155005', N'Hydromedusa', N'1', N'1', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155006', N'Xiokelon', N'1', N'1', N'3', N'58', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155007', N'Midas', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155008', N'Kareta', N'1', N'1', N'3', N'58', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155009', N'Selgata', N'1', N'1', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155010', N'Leather Bag', N'1', N'1', N'3', N'58', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155103', N'Delicate Lactopris', N'1', N'1', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155105', N'Delicate Hydromedusa', N'1', N'1', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155107', N'Delicate Midas', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155109', N'Delicate Selgata', N'1', N'1', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'11155110', N'Exquisite Leather Bag', N'1', N'1', N'3', N'58', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011001', N'Apprentice Robe', N'1', N'0', N'0', N'1', N'1', N'1', N'5000', N'0', N'0', N'2', N'1400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011002', N'Fabric Robe', N'1', N'0', N'0', N'1', N'1', N'1', N'5000', N'0', N'0', N'2', N'1400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011003', N'Linen Robe', N'1', N'0', N'0', N'1', N'1', N'4', N'5000', N'0', N'0', N'2', N'1400', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011004', N'Fleece Robe', N'1', N'0', N'0', N'1', N'1', N'7', N'5000', N'0', N'0', N'2', N'1400', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011005', N'Silky Yarn Robe', N'1', N'0', N'0', N'1', N'1', N'10', N'5000', N'0', N'0', N'2', N'1400', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011006', N'Wool Robe', N'1', N'0', N'0', N'1', N'1', N'13', N'5000', N'0', N'0', N'2', N'1400', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011007', N'Silk Robe', N'1', N'0', N'0', N'1', N'1', N'16', N'5000', N'0', N'0', N'2', N'1400', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011008', N'Ram''s Wool Robe', N'1', N'0', N'0', N'1', N'1', N'19', N'5000', N'0', N'0', N'2', N'1400', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011009', N'Muslin Robe', N'1', N'0', N'0', N'1', N'1', N'22', N'5000', N'0', N'0', N'2', N'1400', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011010', N'Luna Robe', N'1', N'0', N'0', N'1', N'1', N'25', N'5000', N'0', N'0', N'2', N'1400', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011011', N'Celestial Robe', N'1', N'0', N'0', N'1', N'1', N'28', N'5000', N'0', N'0', N'2', N'1400', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011012', N'Mystical Robe', N'1', N'0', N'0', N'1', N'1', N'31', N'5000', N'0', N'0', N'2', N'1400', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011013', N'Sorceress Robe', N'1', N'0', N'0', N'1', N'1', N'34', N'5000', N'0', N'0', N'2', N'1400', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011014', N'Angora Robe', N'1', N'0', N'0', N'1', N'1', N'37', N'5000', N'0', N'0', N'2', N'1400', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011015', N'Aramid Robe', N'1', N'0', N'0', N'1', N'1', N'40', N'5000', N'0', N'0', N'2', N'1400', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011016', N'Berber Robe', N'1', N'0', N'0', N'1', N'1', N'43', N'5000', N'0', N'0', N'2', N'1400', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011017', N'Brocade Robe', N'1', N'0', N'0', N'1', N'1', N'46', N'5000', N'0', N'0', N'2', N'1400', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011018', N'Brocade Robe', N'1', N'0', N'0', N'1', N'1', N'49', N'5000', N'0', N'0', N'2', N'1400', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011019', N'Tartan Robe', N'1', N'0', N'0', N'1', N'1', N'52', N'5000', N'0', N'0', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12011020', N'Weaving Robe', N'1', N'0', N'0', N'1', N'1', N'55', N'5000', N'0', N'0', N'2', N'1400', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012001', N'Fabric Robe', N'1', N'0', N'0', N'1', N'2', N'2', N'5500', N'0', N'3', N'2', N'1400', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012002', N'Linen Robe', N'1', N'0', N'0', N'1', N'2', N'5', N'5500', N'0', N'3', N'2', N'1400', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012003', N'Fleece Robe', N'1', N'0', N'0', N'1', N'2', N'8', N'5500', N'0', N'3', N'2', N'1400', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012004', N'Silky Yarn Robe', N'1', N'0', N'0', N'1', N'2', N'11', N'5500', N'0', N'3', N'2', N'1400', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012005', N'Wool Robe', N'1', N'0', N'0', N'1', N'2', N'14', N'5500', N'0', N'3', N'2', N'1400', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012006', N'Silk Robe', N'1', N'0', N'0', N'1', N'2', N'17', N'5500', N'0', N'3', N'2', N'1400', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012007', N'Ram''s Wool Robe', N'1', N'0', N'0', N'1', N'2', N'20', N'5500', N'0', N'3', N'2', N'1400', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012008', N'Muslin Robe', N'1', N'0', N'0', N'1', N'2', N'23', N'5500', N'0', N'3', N'2', N'1400', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012009', N'Luna Robe', N'1', N'0', N'0', N'1', N'2', N'26', N'5500', N'0', N'3', N'2', N'1400', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012010', N'Celestial Robe', N'1', N'0', N'0', N'1', N'2', N'29', N'5500', N'0', N'3', N'2', N'1400', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012011', N'Mystical Robe', N'1', N'0', N'0', N'1', N'2', N'32', N'5500', N'0', N'3', N'2', N'1400', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012012', N'Sorceress Robe', N'1', N'0', N'0', N'1', N'2', N'35', N'5500', N'0', N'3', N'2', N'1400', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012013', N'Angora Robe', N'1', N'0', N'0', N'1', N'2', N'38', N'5500', N'0', N'3', N'2', N'1400', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012014', N'Aramid Robe', N'1', N'0', N'0', N'1', N'2', N'41', N'5500', N'0', N'3', N'2', N'1400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012015', N'Berber Robe', N'1', N'0', N'0', N'1', N'2', N'44', N'5500', N'0', N'3', N'2', N'1400', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012016', N'Brocade Robe', N'1', N'0', N'0', N'1', N'2', N'47', N'5500', N'0', N'3', N'2', N'1400', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012017', N'Doeskin Robe', N'1', N'0', N'0', N'1', N'2', N'50', N'5500', N'0', N'3', N'2', N'1400', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12012018', N'Tartan Robe', N'1', N'0', N'0', N'1', N'2', N'53', N'5500', N'0', N'3', N'2', N'1400', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014001', N'Lavish Robe', N'1', N'1', N'5', N'1', N'4', N'5', N'6000', N'1', N'3', N'2', N'1400', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014002', N'Insidious Robe', N'1', N'1', N'5', N'1', N'4', N'10', N'6000', N'1', N'3', N'2', N'1400', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014003', N'Exceptional Robe', N'1', N'1', N'5', N'1', N'4', N'15', N'6000', N'1', N'3', N'2', N'1400', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014004', N'Fervid Robe', N'1', N'1', N'5', N'1', N'4', N'20', N'6000', N'1', N'3', N'2', N'1400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014005', N'Nefarious Robe', N'1', N'1', N'5', N'1', N'4', N'25', N'6000', N'1', N'3', N'2', N'1400', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014006', N'Diabolic Robe', N'1', N'1', N'5', N'1', N'4', N'30', N'6000', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014007', N'Sacred Robe', N'1', N'1', N'5', N'1', N'4', N'35', N'6000', N'1', N'3', N'2', N'1400', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014008', N'Devious Robe', N'1', N'1', N'5', N'1', N'4', N'40', N'6000', N'1', N'3', N'2', N'1400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014009', N'Distinct Robe', N'1', N'1', N'5', N'1', N'4', N'45', N'6000', N'1', N'3', N'2', N'1400', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014010', N'Taffeta Robe', N'1', N'1', N'5', N'1', N'4', N'50', N'6000', N'1', N'3', N'2', N'1400', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12014011', N'Obscure Robe', N'1', N'1', N'5', N'1', N'4', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015001', N'Vital Robe', N'1', N'1', N'3', N'1', N'5', N'10', N'6500', N'1', N'3', N'2', N'1400', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015002', N'Wisdom Robe', N'1', N'1', N'3', N'1', N'5', N'15', N'6500', N'1', N'3', N'2', N'1400', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015003', N'Bentus Robe', N'1', N'1', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015004', N'Raschel Robe', N'1', N'1', N'3', N'1', N'5', N'25', N'6500', N'1', N'3', N'2', N'1400', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015005', N'Calico Robe', N'1', N'1', N'3', N'1', N'5', N'30', N'6500', N'1', N'3', N'2', N'1400', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015006', N'Lumen Robe', N'1', N'1', N'3', N'1', N'5', N'35', N'6500', N'1', N'3', N'2', N'1400', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015007', N'Starlight Robe', N'1', N'1', N'3', N'1', N'5', N'40', N'6500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015008', N'Fluer Robe', N'1', N'1', N'3', N'1', N'5', N'45', N'6500', N'1', N'3', N'2', N'1400', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015009', N'Pincord Robe', N'1', N'1', N'3', N'1', N'5', N'50', N'6500', N'1', N'3', N'2', N'1400', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12015010', N'Dusk Robe', N'1', N'1', N'3', N'1', N'5', N'55', N'6500', N'1', N'3', N'2', N'1400', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021001', N'Apprentice Leather Armor', N'1', N'0', N'0', N'2', N'1', N'1', N'5000', N'0', N'0', N'2', N'1900', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021002', N'Light Leather Armor', N'1', N'0', N'0', N'2', N'1', N'1', N'5000', N'0', N'0', N'2', N'1900', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021003', N'Leather Armor', N'1', N'0', N'0', N'2', N'1', N'4', N'5000', N'0', N'0', N'2', N'1900', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021004', N'Quilted Leather Armor', N'1', N'0', N'0', N'2', N'1', N'7', N'5000', N'0', N'0', N'2', N'1900', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021005', N'Studded Leather Armor', N'1', N'0', N'0', N'2', N'1', N'10', N'5000', N'0', N'0', N'2', N'1900', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021006', N'Hunter Armor', N'1', N'0', N'0', N'2', N'1', N'13', N'5000', N'0', N'0', N'2', N'1900', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021007', N'Carp Armor', N'1', N'0', N'0', N'2', N'1', N'16', N'5000', N'0', N'0', N'2', N'1900', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021008', N'Suede Armor', N'1', N'0', N'0', N'2', N'1', N'19', N'5000', N'0', N'0', N'2', N'1900', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021009', N'Nubuck Armor', N'1', N'0', N'0', N'2', N'1', N'22', N'5000', N'0', N'0', N'2', N'1900', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021010', N'Slink Armor', N'1', N'0', N'0', N'2', N'1', N'25', N'5000', N'0', N'0', N'2', N'1900', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021011', N'Hide Armor', N'1', N'0', N'0', N'2', N'1', N'28', N'5000', N'0', N'0', N'2', N'1900', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021012', N'Buckskin Armor', N'1', N'0', N'0', N'2', N'1', N'31', N'5000', N'0', N'0', N'2', N'1900', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021013', N'Shagreen Armor', N'1', N'0', N'0', N'2', N'1', N'34', N'5000', N'0', N'0', N'2', N'1900', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021014', N'Lamellar Armor', N'1', N'0', N'0', N'2', N'1', N'37', N'5000', N'0', N'0', N'2', N'1900', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021015', N'Brigandine Armor', N'1', N'0', N'0', N'2', N'1', N'40', N'5000', N'0', N'0', N'2', N'1900', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021016', N'Lorica Armor ', N'1', N'0', N'0', N'2', N'1', N'43', N'5000', N'0', N'0', N'2', N'1900', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021017', N'Swollen Leather Armor', N'1', N'0', N'0', N'2', N'1', N'46', N'5000', N'0', N'0', N'2', N'1900', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021018', N'Sinful Leather Armor', N'1', N'0', N'0', N'2', N'1', N'49', N'5000', N'0', N'0', N'2', N'1900', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021019', N'Holy Leather Armor', N'1', N'0', N'0', N'2', N'1', N'52', N'5000', N'0', N'0', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12021020', N'Artisanal Leather Armor', N'1', N'0', N'0', N'2', N'1', N'55', N'5000', N'0', N'0', N'2', N'1900', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022001', N'Light Leather Armor', N'1', N'0', N'0', N'2', N'2', N'2', N'5500', N'0', N'3', N'2', N'1900', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022002', N'Leather Armor', N'1', N'0', N'0', N'2', N'2', N'5', N'5500', N'0', N'3', N'2', N'1900', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022003', N'Quilted Leather Armor', N'1', N'0', N'0', N'2', N'2', N'8', N'5500', N'0', N'3', N'2', N'1900', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022004', N'Studded Leather Armor', N'1', N'0', N'0', N'2', N'2', N'11', N'5500', N'0', N'3', N'2', N'1900', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022005', N'Hunter Armor', N'1', N'0', N'0', N'2', N'2', N'14', N'5500', N'0', N'3', N'2', N'1900', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022006', N'Carp Armor', N'1', N'0', N'0', N'2', N'2', N'17', N'5500', N'0', N'3', N'2', N'1900', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022007', N'Suede Armor', N'1', N'0', N'0', N'2', N'2', N'20', N'5500', N'0', N'3', N'2', N'1900', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022008', N'Nubuck Armor', N'1', N'0', N'0', N'2', N'2', N'23', N'5500', N'0', N'3', N'2', N'1900', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022009', N'Slink Armor', N'1', N'0', N'0', N'2', N'2', N'26', N'5500', N'0', N'3', N'2', N'1900', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022010', N'Hide Armor', N'1', N'0', N'0', N'2', N'2', N'29', N'5500', N'0', N'3', N'2', N'1900', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022011', N'Buckskin Armor', N'1', N'0', N'0', N'2', N'2', N'32', N'5500', N'0', N'3', N'2', N'1900', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022012', N'Shagreen Armor', N'1', N'0', N'0', N'2', N'2', N'35', N'5500', N'0', N'3', N'2', N'1900', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022013', N'Lamellar Armor', N'1', N'0', N'0', N'2', N'2', N'38', N'5500', N'0', N'3', N'2', N'1900', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022014', N'Brigandine Armor', N'1', N'0', N'0', N'2', N'2', N'41', N'5500', N'0', N'3', N'2', N'1900', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022015', N'Lorica Armor ', N'1', N'0', N'0', N'2', N'2', N'44', N'5500', N'0', N'3', N'2', N'1900', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022016', N'Swollen Leather Armor', N'1', N'0', N'0', N'2', N'2', N'47', N'5500', N'0', N'3', N'2', N'1900', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022017', N'Sinful Leather Armor', N'1', N'0', N'0', N'2', N'2', N'50', N'5500', N'0', N'3', N'2', N'1900', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12022018', N'Holy Leather Armor', N'1', N'0', N'0', N'2', N'2', N'53', N'5500', N'0', N'3', N'2', N'1900', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024001', N'Authentic Leather Armor', N'1', N'1', N'5', N'2', N'4', N'5', N'6000', N'1', N'3', N'2', N'1900', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024002', N'Camouflage Leather Armor', N'1', N'1', N'5', N'2', N'4', N'10', N'6000', N'1', N'3', N'2', N'1900', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024003', N'Illicit Leather Armor', N'1', N'1', N'5', N'2', N'4', N'15', N'6000', N'1', N'3', N'2', N'1900', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024004', N'Rugged Leather Armor', N'1', N'1', N'5', N'2', N'4', N'20', N'6000', N'1', N'3', N'2', N'1900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024005', N'Dread Leather Armor', N'1', N'1', N'5', N'2', N'4', N'25', N'6000', N'1', N'3', N'2', N'1900', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024006', N'Tough Leather Armor', N'1', N'1', N'5', N'2', N'4', N'30', N'6000', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024007', N'Haken-hide Armor', N'1', N'1', N'5', N'2', N'4', N'35', N'6000', N'1', N'3', N'2', N'1900', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024008', N'Combat Leather Armor', N'1', N'1', N'5', N'2', N'4', N'40', N'6000', N'1', N'3', N'2', N'1900', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024009', N'Genuine Leather Armor', N'1', N'1', N'5', N'2', N'4', N'45', N'6000', N'1', N'3', N'2', N'1900', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024010', N'Superior Leather Armor', N'1', N'1', N'5', N'2', N'4', N'50', N'6000', N'1', N'3', N'2', N'1900', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12024011', N'Posh Leather Armor', N'1', N'1', N'5', N'2', N'4', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025001', N'Tanned Armor', N'1', N'1', N'3', N'2', N'5', N'10', N'6500', N'1', N'3', N'2', N'1900', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025002', N'Rawhide Armor', N'1', N'1', N'3', N'2', N'5', N'15', N'6500', N'1', N'3', N'2', N'1900', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025003', N'Demonic Leather Armor', N'1', N'1', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025004', N'Praetorian Armor', N'1', N'1', N'3', N'2', N'5', N'25', N'6500', N'1', N'3', N'2', N'1900', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025005', N'Lacrimal Armor', N'1', N'1', N'3', N'2', N'5', N'30', N'6500', N'1', N'3', N'2', N'1900', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025006', N'Eminent Leather Armor', N'1', N'1', N'3', N'2', N'5', N'35', N'6500', N'1', N'3', N'2', N'1900', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025007', N'Aquarius Armor', N'1', N'1', N'3', N'2', N'5', N'40', N'6500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025008', N'Rogue Armor', N'1', N'1', N'3', N'2', N'5', N'45', N'6500', N'1', N'3', N'2', N'1900', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025009', N'Fianna Armor', N'1', N'1', N'3', N'2', N'5', N'50', N'6500', N'1', N'3', N'2', N'1900', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12025010', N'Arcane Leather Armor', N'1', N'1', N'3', N'2', N'5', N'55', N'6500', N'1', N'3', N'2', N'1900', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031001', N'Apprentice Chain Mail', N'1', N'0', N'0', N'3', N'1', N'1', N'5000', N'0', N'0', N'2', N'3000', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031002', N'Ringed Mail', N'1', N'0', N'0', N'3', N'1', N'1', N'5000', N'0', N'0', N'2', N'3000', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031003', N'Chain Mail', N'1', N'0', N'0', N'3', N'1', N'4', N'5000', N'0', N'0', N'2', N'3000', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031004', N'Wire Mail', N'1', N'0', N'0', N'3', N'1', N'7', N'5000', N'0', N'0', N'2', N'3000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031005', N'Hunter Mail', N'1', N'0', N'0', N'3', N'1', N'10', N'5000', N'0', N'0', N'2', N'3000', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031006', N'Battle Mail', N'1', N'0', N'0', N'3', N'1', N'13', N'5000', N'0', N'0', N'2', N'3000', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031007', N'Devout Mail', N'1', N'0', N'0', N'3', N'1', N'16', N'5000', N'0', N'0', N'2', N'3000', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031008', N'Banded Mail', N'1', N'0', N'0', N'3', N'1', N'19', N'5000', N'0', N'0', N'2', N'3000', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031009', N'Linked Mail', N'1', N'0', N'0', N'3', N'1', N'22', N'5000', N'0', N'0', N'2', N'3000', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031010', N'Splinted Mail', N'1', N'0', N'0', N'3', N'1', N'25', N'5000', N'0', N'0', N'2', N'3000', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031011', N'Rivet Mail', N'1', N'0', N'0', N'3', N'1', N'28', N'5000', N'0', N'0', N'2', N'3000', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031012', N'Venetian Mail', N'1', N'0', N'0', N'3', N'1', N'31', N'5000', N'0', N'0', N'2', N'3000', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031013', N'Arquebus Mail', N'1', N'0', N'0', N'3', N'1', N'34', N'5000', N'0', N'0', N'2', N'3000', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031014', N'Acorn Mail', N'1', N'0', N'0', N'3', N'1', N'37', N'5000', N'0', N'0', N'2', N'3000', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031015', N'Aventail Mail', N'1', N'0', N'0', N'3', N'1', N'40', N'5000', N'0', N'0', N'2', N'3000', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031016', N'Janissary Mail', N'1', N'0', N'0', N'3', N'1', N'43', N'5000', N'0', N'0', N'2', N'3000', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031017', N'Genovese Mail', N'1', N'0', N'0', N'3', N'1', N'46', N'5000', N'0', N'0', N'2', N'3000', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031018', N'Teutonic Mail', N'1', N'0', N'0', N'3', N'1', N'49', N'5000', N'0', N'0', N'2', N'3000', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031019', N'Uniform Mail', N'1', N'0', N'0', N'3', N'1', N'52', N'5000', N'0', N'0', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12031020', N'Concours Chain Mail', N'1', N'0', N'0', N'3', N'1', N'55', N'5000', N'0', N'0', N'2', N'3000', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032001', N'Ringed Mail', N'1', N'0', N'0', N'3', N'2', N'2', N'5500', N'0', N'3', N'2', N'3000', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032002', N'Chain Mail', N'1', N'0', N'0', N'3', N'2', N'5', N'5500', N'0', N'3', N'2', N'3000', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032003', N'Wire Mail', N'1', N'0', N'0', N'3', N'2', N'8', N'5500', N'0', N'3', N'2', N'3000', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032004', N'Hunter Mail', N'1', N'0', N'0', N'3', N'2', N'11', N'5500', N'0', N'3', N'2', N'3000', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032005', N'Battle Mail', N'1', N'0', N'0', N'3', N'2', N'14', N'5500', N'0', N'3', N'2', N'3000', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032006', N'Devout Mail', N'1', N'0', N'0', N'3', N'2', N'17', N'5500', N'0', N'3', N'2', N'3000', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032007', N'Banded Mail', N'1', N'0', N'0', N'3', N'2', N'20', N'5500', N'0', N'3', N'2', N'3000', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032008', N'Linked Mail', N'1', N'0', N'0', N'3', N'2', N'23', N'5500', N'0', N'3', N'2', N'3000', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032009', N'Splinted Mail', N'1', N'0', N'0', N'3', N'2', N'26', N'5500', N'0', N'3', N'2', N'3000', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032010', N'Rivet Mail', N'1', N'0', N'0', N'3', N'2', N'29', N'5500', N'0', N'3', N'2', N'3000', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032011', N'Venetian Mail', N'1', N'0', N'0', N'3', N'2', N'32', N'5500', N'0', N'3', N'2', N'3000', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032012', N'Arquebus Mail', N'1', N'0', N'0', N'3', N'2', N'35', N'5500', N'0', N'3', N'2', N'3000', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032013', N'Acorn Mail', N'1', N'0', N'0', N'3', N'2', N'38', N'5500', N'0', N'3', N'2', N'3000', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032014', N'Aventail Mail', N'1', N'0', N'0', N'3', N'2', N'41', N'5500', N'0', N'3', N'2', N'3000', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032015', N'Janissary Mail', N'1', N'0', N'0', N'3', N'2', N'44', N'5500', N'0', N'3', N'2', N'3000', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032016', N'Genovese Mail', N'1', N'0', N'0', N'3', N'2', N'47', N'5500', N'0', N'3', N'2', N'3000', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032017', N'Teutonic Mail', N'1', N'0', N'0', N'3', N'2', N'50', N'5500', N'0', N'3', N'2', N'3000', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12032018', N'Uniform Mail', N'1', N'0', N'0', N'3', N'2', N'53', N'5500', N'0', N'3', N'2', N'3000', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034001', N'Gritty Mail', N'1', N'1', N'5', N'3', N'4', N'5', N'6000', N'1', N'3', N'2', N'3000', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034002', N'Heavy Chain Mail', N'1', N'1', N'5', N'3', N'4', N'10', N'6000', N'1', N'3', N'2', N'3000', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034003', N'Ultimate Chain Mail', N'1', N'1', N'5', N'3', N'4', N'15', N'6000', N'1', N'3', N'2', N'3000', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034004', N'Brisk Chain Mail', N'1', N'1', N'5', N'3', N'4', N'20', N'6000', N'1', N'3', N'2', N'3000', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034005', N'Bound Mail', N'1', N'1', N'5', N'3', N'4', N'25', N'6000', N'1', N'3', N'2', N'3000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034006', N'Secure Chain Mail', N'1', N'1', N'5', N'3', N'4', N'30', N'6000', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034007', N'Devout Chain Mail', N'1', N'1', N'5', N'3', N'4', N'35', N'6000', N'1', N'3', N'2', N'3000', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034008', N'Solid Chain Mail', N'1', N'1', N'5', N'3', N'4', N'40', N'6000', N'1', N'3', N'2', N'3000', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034009', N'Discarded Mail', N'1', N'1', N'5', N'3', N'4', N'45', N'6000', N'1', N'3', N'2', N'3000', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034010', N'Engraved Chain Mail', N'1', N'1', N'5', N'3', N'4', N'50', N'6000', N'1', N'3', N'2', N'3000', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12034011', N'Cure Chain Mail', N'1', N'1', N'5', N'3', N'4', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035001', N'Dense Chain Mail', N'1', N'1', N'3', N'3', N'5', N'10', N'6500', N'1', N'3', N'2', N'3000', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035002', N'Burnished Mail', N'1', N'1', N'3', N'3', N'5', N'15', N'6500', N'1', N'3', N'2', N'3000', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035003', N'Ribbed Mail', N'1', N'1', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035004', N'Arcane Chain Mail', N'1', N'1', N'3', N'3', N'5', N'25', N'6500', N'1', N'3', N'2', N'3000', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035005', N'Ashen Chain Mail', N'1', N'1', N'3', N'3', N'5', N'30', N'6500', N'1', N'3', N'2', N'3000', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035006', N'Placidus Chain Mail', N'1', N'1', N'3', N'3', N'5', N'35', N'6500', N'1', N'3', N'2', N'3000', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035007', N'Armadillo Mail', N'1', N'1', N'3', N'3', N'5', N'40', N'6500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035008', N'Bulwark Mail', N'1', N'1', N'3', N'3', N'5', N'45', N'6500', N'1', N'3', N'2', N'3000', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035009', N'Cardiff Chain Mail', N'1', N'1', N'3', N'3', N'5', N'50', N'6500', N'1', N'3', N'2', N'3000', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12035010', N'Armed Chain Mail', N'1', N'1', N'3', N'3', N'5', N'55', N'6500', N'1', N'3', N'2', N'3000', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041001', N'Apprentice Plate', N'1', N'0', N'0', N'4', N'1', N'1', N'5000', N'0', N'0', N'2', N'5700', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041002', N'Prelic Armor', N'1', N'0', N'0', N'4', N'1', N'1', N'5000', N'0', N'0', N'2', N'5700', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041003', N'Padded Armor', N'1', N'0', N'0', N'4', N'1', N'4', N'5000', N'0', N'0', N'2', N'5700', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041004', N'Hauberk Armor', N'1', N'0', N'0', N'4', N'1', N'7', N'5000', N'0', N'0', N'2', N'5700', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041005', N'Scale Mail', N'1', N'0', N'0', N'4', N'1', N'10', N'5000', N'0', N'0', N'2', N'5700', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041006', N'Steel Plate', N'1', N'0', N'0', N'4', N'1', N'13', N'5000', N'0', N'0', N'2', N'5700', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041007', N'Spiral Plate', N'1', N'0', N'0', N'4', N'1', N'16', N'5000', N'0', N'0', N'2', N'5700', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041008', N'Hoplite Plate', N'1', N'0', N'0', N'4', N'1', N'19', N'5000', N'0', N'0', N'2', N'5700', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041009', N'Full Plate', N'1', N'0', N'0', N'4', N'1', N'22', N'5000', N'0', N'0', N'2', N'5700', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041010', N'Ornate Plate', N'1', N'0', N'0', N'4', N'1', N'25', N'5000', N'0', N'0', N'2', N'5700', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041011', N'Rune Plate', N'1', N'0', N'0', N'4', N'1', N'28', N'5000', N'0', N'0', N'2', N'5700', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041012', N'Raven Plate', N'1', N'0', N'0', N'4', N'1', N'31', N'5000', N'0', N'0', N'2', N'5700', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041013', N'Castilian Plate', N'1', N'0', N'0', N'4', N'1', N'34', N'5000', N'0', N'0', N'2', N'5700', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041014', N'Baleog Plate', N'1', N'0', N'0', N'4', N'1', N'37', N'5000', N'0', N'0', N'2', N'5700', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041015', N'Drake Plate', N'1', N'0', N'0', N'4', N'1', N'40', N'5000', N'0', N'0', N'2', N'5700', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041016', N'Crisis Plate', N'1', N'0', N'0', N'4', N'1', N'43', N'5000', N'0', N'0', N'2', N'5700', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041017', N'Tarnished Plate', N'1', N'0', N'0', N'4', N'1', N'46', N'5000', N'0', N'0', N'2', N'5700', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041018', N'Dragoon Plate', N'1', N'0', N'0', N'4', N'1', N'49', N'5000', N'0', N'0', N'2', N'5700', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041019', N'Reflective Plate ', N'1', N'0', N'0', N'4', N'1', N'52', N'5000', N'0', N'0', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12041020', N'Watcher''s Plate', N'1', N'0', N'0', N'4', N'1', N'55', N'5000', N'0', N'0', N'2', N'5700', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042001', N'Prelic Armor', N'1', N'0', N'0', N'4', N'2', N'2', N'5500', N'0', N'3', N'2', N'5700', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042002', N'Padded Armor', N'1', N'0', N'0', N'4', N'2', N'5', N'5500', N'0', N'3', N'2', N'5700', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042003', N'Hauberk Armor', N'1', N'0', N'0', N'4', N'2', N'8', N'5500', N'0', N'3', N'2', N'5700', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042004', N'Scale Mail', N'1', N'0', N'0', N'4', N'2', N'11', N'5500', N'0', N'3', N'2', N'5700', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042005', N'Steel Plate', N'1', N'0', N'0', N'4', N'2', N'14', N'5500', N'0', N'3', N'2', N'5700', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042006', N'Spiral Plate', N'1', N'0', N'0', N'4', N'2', N'17', N'5500', N'0', N'3', N'2', N'5700', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042007', N'Hoplite Plate', N'1', N'0', N'0', N'4', N'2', N'20', N'5500', N'0', N'3', N'2', N'5700', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042008', N'Full Plate', N'1', N'0', N'0', N'4', N'2', N'23', N'5500', N'0', N'3', N'2', N'5700', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042009', N'Ornate Plate', N'1', N'0', N'0', N'4', N'2', N'26', N'5500', N'0', N'3', N'2', N'5700', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042010', N'Rune Plate', N'1', N'0', N'0', N'4', N'2', N'29', N'5500', N'0', N'3', N'2', N'5700', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042011', N'Raven Plate', N'1', N'0', N'0', N'4', N'2', N'32', N'5500', N'0', N'3', N'2', N'5700', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042012', N'Castilian Plate', N'1', N'0', N'0', N'4', N'2', N'35', N'5500', N'0', N'3', N'2', N'5700', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042013', N'Baleog Plate', N'1', N'0', N'0', N'4', N'2', N'38', N'5500', N'0', N'3', N'2', N'5700', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042014', N'Drake Plate', N'1', N'0', N'0', N'4', N'2', N'41', N'5500', N'0', N'3', N'2', N'5700', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042015', N'Crisis Plate', N'1', N'0', N'0', N'4', N'2', N'44', N'5500', N'0', N'3', N'2', N'5700', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042016', N'Tarnished Plate', N'1', N'0', N'0', N'4', N'2', N'47', N'5500', N'0', N'3', N'2', N'5700', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042017', N'Dragoon Plate', N'1', N'0', N'0', N'4', N'2', N'50', N'5500', N'0', N'3', N'2', N'5700', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12042018', N'Reflective Plate ', N'1', N'0', N'0', N'4', N'2', N'53', N'5500', N'0', N'3', N'2', N'5700', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044001', N'Shining Plate', N'1', N'1', N'5', N'4', N'4', N'5', N'6000', N'1', N'3', N'2', N'5700', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044002', N'Dazzling Plate', N'1', N'1', N'5', N'4', N'4', N'10', N'6000', N'1', N'3', N'2', N'5700', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044003', N'Assault Plate', N'1', N'1', N'5', N'4', N'4', N'15', N'6000', N'1', N'3', N'2', N'5700', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044004', N'Gendarme Plate', N'1', N'1', N'5', N'4', N'4', N'20', N'6000', N'1', N'3', N'2', N'5700', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044005', N'Enduring Plate', N'1', N'1', N'5', N'4', N'4', N'25', N'6000', N'1', N'3', N'2', N'5700', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044006', N'Jousting Plate', N'1', N'1', N'5', N'4', N'4', N'30', N'6000', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044007', N'Stark Plate', N'1', N'1', N'5', N'4', N'4', N'35', N'6000', N'1', N'3', N'2', N'5700', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044008', N'Menacing Plate', N'1', N'1', N'5', N'4', N'4', N'40', N'6000', N'1', N'3', N'2', N'5700', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044009', N'Hazardous Plate', N'1', N'1', N'5', N'4', N'4', N'45', N'6000', N'1', N'3', N'2', N'5700', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044010', N'Expert Plate', N'1', N'1', N'5', N'4', N'4', N'50', N'6000', N'1', N'3', N'2', N'5700', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12044011', N'Suspicious Plate', N'1', N'1', N'5', N'4', N'4', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045001', N'Doomed Plate', N'1', N'1', N'3', N'4', N'5', N'10', N'6500', N'1', N'3', N'2', N'5700', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045002', N'Essential Plate', N'1', N'1', N'3', N'4', N'5', N'15', N'6500', N'1', N'3', N'2', N'5700', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045003', N'Blazing Plate', N'1', N'1', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045004', N'Infernal Plate', N'1', N'1', N'3', N'4', N'5', N'25', N'6500', N'1', N'3', N'2', N'5700', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045005', N'Field Marshal Plate', N'1', N'1', N'3', N'4', N'5', N'30', N'6500', N'1', N'3', N'2', N'5700', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045006', N'Destined Plate', N'1', N'1', N'3', N'4', N'5', N'35', N'6500', N'1', N'3', N'2', N'5700', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045007', N'Knightly Plate', N'1', N'1', N'3', N'4', N'5', N'40', N'6500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045008', N'Fergana Plate', N'1', N'1', N'3', N'4', N'5', N'45', N'6500', N'1', N'3', N'2', N'5700', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045009', N'Avernus Plate', N'1', N'1', N'3', N'4', N'5', N'50', N'6500', N'1', N'3', N'2', N'5700', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'12045010', N'Flame Plate', N'1', N'1', N'3', N'4', N'5', N'55', N'6500', N'1', N'3', N'2', N'5700', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011001', N'Fabric Hood', N'1', N'0', N'0', N'1', N'1', N'2', N'3000', N'0', N'0', N'2', N'900', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011002', N'Linen Hood', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011003', N'Fleece Hood', N'1', N'0', N'0', N'1', N'1', N'8', N'3000', N'0', N'0', N'2', N'900', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011004', N'Silky Yarn Hood', N'1', N'0', N'0', N'1', N'1', N'11', N'3000', N'0', N'0', N'2', N'900', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011005', N'Wool Hood', N'1', N'0', N'0', N'1', N'1', N'14', N'3000', N'0', N'0', N'2', N'900', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011006', N'Silk Hood', N'1', N'0', N'0', N'1', N'1', N'17', N'3000', N'0', N'0', N'2', N'900', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011007', N'Ram''s Wool Hood', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011008', N'Muslin Hood', N'1', N'0', N'0', N'1', N'1', N'23', N'3000', N'0', N'0', N'2', N'900', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011009', N'Luna Hood', N'1', N'0', N'0', N'1', N'1', N'26', N'3000', N'0', N'0', N'2', N'900', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011010', N'Celestial Hood', N'1', N'0', N'0', N'1', N'1', N'29', N'3000', N'0', N'0', N'2', N'900', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011011', N'Mystical Hood', N'1', N'0', N'0', N'1', N'1', N'32', N'3000', N'0', N'0', N'2', N'900', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011012', N'Sorceress Hood', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011013', N'Angora Hood', N'1', N'0', N'0', N'1', N'1', N'38', N'3000', N'0', N'0', N'2', N'900', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011014', N'Aramid Hood', N'1', N'0', N'0', N'1', N'1', N'41', N'3200', N'0', N'0', N'2', N'900', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011015', N'Berber Hood', N'1', N'0', N'0', N'1', N'1', N'44', N'3200', N'0', N'0', N'2', N'900', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011016', N'Brocade Hood', N'1', N'0', N'0', N'1', N'1', N'47', N'3200', N'0', N'0', N'2', N'900', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011017', N'Doeskin Hood', N'1', N'0', N'0', N'1', N'1', N'50', N'3200', N'0', N'0', N'2', N'900', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13011018', N'Nea Hood', N'1', N'0', N'0', N'1', N'1', N'53', N'3000', N'0', N'0', N'2', N'900', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012001', N'Fabric Hood', N'1', N'0', N'0', N'1', N'2', N'3', N'3200', N'0', N'3', N'2', N'900', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012002', N'Linen Hood', N'1', N'0', N'0', N'1', N'2', N'6', N'3200', N'0', N'3', N'2', N'900', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012003', N'Fleece Hood', N'1', N'0', N'0', N'1', N'2', N'9', N'3200', N'0', N'3', N'2', N'900', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012004', N'Silky Yarn Hood', N'1', N'0', N'0', N'1', N'2', N'12', N'3200', N'0', N'3', N'2', N'900', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012005', N'Wool Hood', N'1', N'0', N'0', N'1', N'2', N'15', N'3200', N'0', N'3', N'2', N'900', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012006', N'Silk Hood', N'1', N'0', N'0', N'1', N'2', N'18', N'3200', N'0', N'3', N'2', N'900', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012007', N'Ram''s Wool Hood', N'1', N'0', N'0', N'1', N'2', N'21', N'3200', N'0', N'3', N'2', N'900', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012008', N'Muslin Hood', N'1', N'0', N'0', N'1', N'2', N'24', N'3200', N'0', N'3', N'2', N'900', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012009', N'Luna Hood', N'1', N'0', N'0', N'1', N'2', N'27', N'3200', N'0', N'3', N'2', N'900', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012010', N'Celestial Hood', N'1', N'0', N'0', N'1', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012011', N'Mystical Hood', N'1', N'0', N'0', N'1', N'2', N'33', N'3200', N'0', N'3', N'2', N'900', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012012', N'Sorceress Hood', N'1', N'0', N'0', N'1', N'2', N'36', N'3200', N'0', N'3', N'2', N'900', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012013', N'Angora Hood', N'1', N'0', N'0', N'1', N'2', N'39', N'3200', N'0', N'3', N'2', N'900', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012014', N'Aramid Hood', N'1', N'0', N'0', N'1', N'2', N'42', N'3200', N'0', N'3', N'2', N'900', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012015', N'Berber Hood', N'1', N'0', N'0', N'1', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012016', N'Brocade Hood', N'1', N'0', N'0', N'1', N'2', N'48', N'3200', N'0', N'3', N'2', N'900', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012017', N'Doeskin Hood', N'1', N'0', N'0', N'1', N'2', N'51', N'3200', N'0', N'3', N'2', N'900', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13012018', N'Nea Hood', N'1', N'0', N'0', N'1', N'2', N'54', N'3200', N'0', N'3', N'2', N'900', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014001', N'Lavish Hood', N'1', N'1', N'5', N'1', N'4', N'5', N'3400', N'1', N'3', N'2', N'900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014002', N'Insidious Hood', N'1', N'1', N'5', N'1', N'4', N'10', N'3400', N'1', N'3', N'2', N'900', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014003', N'Exceptional Hood', N'1', N'1', N'5', N'1', N'4', N'15', N'3400', N'1', N'3', N'2', N'900', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014004', N'Fervid Hood', N'1', N'1', N'5', N'1', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014005', N'Nefarious Hood', N'1', N'1', N'5', N'1', N'4', N'25', N'3400', N'1', N'3', N'2', N'900', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014006', N'Diabolic Hood', N'1', N'1', N'5', N'1', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014007', N'Sacred Hood', N'1', N'1', N'5', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014008', N'Devious Hood', N'1', N'1', N'5', N'1', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014009', N'Distinct Hood', N'1', N'1', N'5', N'1', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014010', N'Taffeta Hood', N'1', N'1', N'5', N'1', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13014011', N'Obscure Hood', N'1', N'1', N'5', N'1', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015001', N'Vital Hood', N'1', N'1', N'3', N'1', N'5', N'10', N'3600', N'1', N'3', N'2', N'900', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015002', N'Wisdom Hood', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015003', N'Bentus Hood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015004', N'Raschel Hood', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015005', N'Calico Hood', N'1', N'1', N'3', N'1', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015006', N'Lumen Hood', N'1', N'1', N'3', N'1', N'5', N'35', N'3600', N'1', N'3', N'2', N'900', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015007', N'Starlight Hood', N'1', N'1', N'3', N'1', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015008', N'Fluer Hood', N'1', N'1', N'3', N'1', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015009', N'Pincord Hood', N'1', N'1', N'3', N'1', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13015010', N'Dusk Hood', N'1', N'1', N'3', N'1', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021001', N'Light Leather Cap', N'1', N'0', N'0', N'2', N'1', N'2', N'3000', N'0', N'0', N'2', N'1200', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021002', N'Leather Cap', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'1200', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021003', N'Quilted Leather Cap', N'1', N'0', N'0', N'2', N'1', N'8', N'3000', N'0', N'0', N'2', N'1200', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021004', N'Studded Leather Cap', N'1', N'0', N'0', N'2', N'1', N'11', N'3000', N'0', N'0', N'2', N'1200', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021005', N'Hunter Cap', N'1', N'0', N'0', N'2', N'1', N'14', N'3000', N'0', N'0', N'2', N'1200', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021006', N'Carp Cap', N'1', N'0', N'0', N'2', N'1', N'17', N'3000', N'0', N'0', N'2', N'1200', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021007', N'Suede Cap', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'1200', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021008', N'Nubuck Cap', N'1', N'0', N'0', N'2', N'1', N'23', N'3000', N'0', N'0', N'2', N'1200', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021009', N'Slink Cap', N'1', N'0', N'0', N'2', N'1', N'26', N'3000', N'0', N'0', N'2', N'1200', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021010', N'Hide Cap', N'1', N'0', N'0', N'2', N'1', N'29', N'3000', N'0', N'0', N'2', N'1200', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021011', N'Buckskin Cap', N'1', N'0', N'0', N'2', N'1', N'32', N'3000', N'0', N'0', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021012', N'Shagreen Cap', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'1200', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021013', N'Lamellar Cap', N'1', N'0', N'0', N'2', N'1', N'38', N'3000', N'0', N'0', N'2', N'1200', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021014', N'Brigandine Cap', N'1', N'0', N'0', N'2', N'1', N'41', N'3000', N'0', N'0', N'2', N'1200', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021015', N'Lorica Cap', N'1', N'0', N'0', N'2', N'1', N'44', N'3000', N'0', N'0', N'2', N'1200', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021016', N'Swollen Leather Cap', N'1', N'0', N'0', N'2', N'1', N'47', N'3000', N'0', N'0', N'2', N'1200', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021017', N'Sinful Leather Cap', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'1200', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13021018', N'DS Leather Cap', N'1', N'0', N'0', N'2', N'1', N'53', N'3000', N'0', N'0', N'2', N'1200', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022001', N'Light Leather Cap', N'1', N'0', N'0', N'2', N'2', N'3', N'3200', N'0', N'3', N'2', N'1200', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022002', N'Leather Cap', N'1', N'0', N'0', N'2', N'2', N'6', N'3200', N'0', N'3', N'2', N'1200', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022003', N'Quilted Leather Cap', N'1', N'0', N'0', N'2', N'2', N'9', N'3200', N'0', N'3', N'2', N'1200', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022004', N'Studded Leather Cap', N'1', N'0', N'0', N'2', N'2', N'12', N'3200', N'0', N'3', N'2', N'1200', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022005', N'Hunter Cap', N'1', N'0', N'0', N'2', N'2', N'15', N'3200', N'0', N'3', N'2', N'1200', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022006', N'Carp Cap', N'1', N'0', N'0', N'2', N'2', N'18', N'3200', N'0', N'3', N'2', N'1200', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022007', N'Suede Cap', N'1', N'0', N'0', N'2', N'2', N'21', N'3200', N'0', N'3', N'2', N'1200', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022008', N'Nubuck Cap', N'1', N'0', N'0', N'2', N'2', N'24', N'3200', N'0', N'3', N'2', N'1200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022009', N'Slink Cap', N'1', N'0', N'0', N'2', N'2', N'27', N'3200', N'0', N'3', N'2', N'1200', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022010', N'Hide Cap', N'1', N'0', N'0', N'2', N'2', N'30', N'3200', N'0', N'3', N'2', N'1200', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022011', N'Buckskin Cap', N'1', N'0', N'0', N'2', N'2', N'33', N'3200', N'0', N'3', N'2', N'1200', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022012', N'Shagreen Cap', N'1', N'0', N'0', N'2', N'2', N'36', N'3200', N'0', N'3', N'2', N'1200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022013', N'Lamellar Cap', N'1', N'0', N'0', N'2', N'2', N'39', N'3200', N'0', N'3', N'2', N'1200', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022014', N'Brigandine Cap', N'1', N'0', N'0', N'2', N'2', N'42', N'3200', N'0', N'3', N'2', N'1200', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022015', N'Lorica Cap', N'1', N'0', N'0', N'2', N'2', N'45', N'3200', N'0', N'3', N'2', N'1200', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022016', N'Swollen Leather Cap', N'1', N'0', N'0', N'2', N'2', N'48', N'3200', N'0', N'3', N'2', N'1200', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022017', N'Sinful Leather Cap', N'1', N'0', N'0', N'2', N'2', N'51', N'3200', N'0', N'3', N'2', N'1200', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13022018', N'DS Leather Cap', N'1', N'0', N'0', N'2', N'2', N'54', N'3200', N'0', N'3', N'2', N'1200', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024001', N'Authentic Leather Cap', N'1', N'1', N'5', N'2', N'4', N'5', N'3400', N'1', N'3', N'2', N'1200', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024002', N'Camouflage Leather Cap', N'1', N'1', N'5', N'2', N'4', N'10', N'3400', N'1', N'3', N'2', N'1200', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024003', N'Illicit Leather Cap', N'1', N'1', N'5', N'2', N'4', N'15', N'3400', N'1', N'3', N'2', N'1200', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024004', N'Rugged Leather Cap', N'1', N'1', N'5', N'2', N'4', N'20', N'3400', N'1', N'3', N'2', N'1200', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024005', N'Dread Leather Cap', N'1', N'1', N'5', N'2', N'4', N'25', N'3400', N'1', N'3', N'2', N'1200', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024006', N'Tough Leather Cap', N'1', N'1', N'5', N'2', N'4', N'30', N'3400', N'1', N'3', N'2', N'1200', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024007', N'Haken-hide Cap', N'1', N'1', N'5', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'1200', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024008', N'Combat Leather Cap', N'1', N'1', N'5', N'2', N'4', N'40', N'3400', N'1', N'3', N'2', N'1200', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024009', N'Genuine Leather Cap', N'1', N'1', N'5', N'2', N'4', N'45', N'3400', N'1', N'3', N'2', N'1200', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024010', N'Superior Leather Cap', N'1', N'1', N'5', N'2', N'4', N'50', N'3400', N'1', N'3', N'2', N'1200', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13024011', N'Posh Leather cap', N'1', N'1', N'5', N'2', N'4', N'55', N'3400', N'1', N'3', N'2', N'1200', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025001', N'Tanned Cap', N'1', N'1', N'3', N'2', N'5', N'10', N'3600', N'1', N'3', N'2', N'1200', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025002', N'Rawhide Cap', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'1200', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025003', N'Demonic Leather Cap', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'1200', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025004', N'Praetorian Cap', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'1200', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025005', N'Lacrimal Cap', N'1', N'1', N'3', N'2', N'5', N'30', N'3600', N'1', N'3', N'2', N'1200', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025006', N'Eminent Leather Cap', N'1', N'1', N'3', N'2', N'5', N'35', N'3600', N'1', N'3', N'2', N'1200', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025007', N'Aquarius Cap', N'1', N'1', N'3', N'2', N'5', N'40', N'3600', N'1', N'3', N'2', N'1200', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025008', N'Rogue Cap', N'1', N'1', N'3', N'2', N'5', N'45', N'3600', N'1', N'3', N'2', N'1200', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025009', N'Fianna Cap', N'1', N'1', N'3', N'2', N'5', N'50', N'3600', N'1', N'3', N'2', N'1200', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13025010', N'Arcane Leather Cap', N'1', N'1', N'3', N'2', N'5', N'55', N'3600', N'1', N'3', N'2', N'1200', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031001', N'Ringed Helm', N'1', N'0', N'0', N'3', N'1', N'2', N'3000', N'0', N'0', N'2', N'1800', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031002', N'Chain Helm', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'1800', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031003', N'Wire Helm', N'1', N'0', N'0', N'3', N'1', N'8', N'3000', N'0', N'0', N'2', N'1800', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031004', N'Hunter Helm', N'1', N'0', N'0', N'3', N'1', N'11', N'3000', N'0', N'0', N'2', N'1800', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031005', N'Battle Helm', N'1', N'0', N'0', N'3', N'1', N'14', N'3000', N'0', N'0', N'2', N'1800', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031006', N'Devout Helm', N'1', N'0', N'0', N'3', N'1', N'17', N'3000', N'0', N'0', N'2', N'1800', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031007', N'Banded Helm', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'1800', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031008', N'Linked Helm', N'1', N'0', N'0', N'3', N'1', N'23', N'3000', N'0', N'0', N'2', N'1800', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031009', N'Splinted Helm', N'1', N'0', N'0', N'3', N'1', N'26', N'3000', N'0', N'0', N'2', N'1800', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031010', N'Rivet Helm', N'1', N'0', N'0', N'3', N'1', N'29', N'3000', N'0', N'0', N'2', N'1800', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031011', N'Venetian Helm', N'1', N'0', N'0', N'3', N'1', N'32', N'3000', N'0', N'0', N'2', N'1800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031012', N'Arquebus Helm', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'1800', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031013', N'Acorn Helm', N'1', N'0', N'0', N'3', N'1', N'38', N'3000', N'0', N'0', N'2', N'1800', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031014', N'Aventail Helm', N'1', N'0', N'0', N'3', N'1', N'41', N'3000', N'0', N'0', N'2', N'1800', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031015', N'Janissary Helm', N'1', N'0', N'0', N'3', N'1', N'44', N'3000', N'0', N'0', N'2', N'1800', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031016', N'Genovese Helm', N'1', N'0', N'0', N'3', N'1', N'47', N'3000', N'0', N'0', N'2', N'1800', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031017', N'Teutonic Helm', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'1800', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13031018', N'Natura Chain Helm', N'1', N'0', N'0', N'3', N'1', N'53', N'3000', N'0', N'0', N'2', N'1800', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032001', N'Ringed Helm', N'1', N'0', N'0', N'3', N'2', N'3', N'3200', N'0', N'3', N'2', N'1800', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032002', N'Chain Helm', N'1', N'0', N'0', N'3', N'2', N'6', N'3200', N'0', N'3', N'2', N'1800', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032003', N'Wire Helm', N'1', N'0', N'0', N'3', N'2', N'9', N'3200', N'0', N'3', N'2', N'1800', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032004', N'Hunter Helm', N'1', N'0', N'0', N'3', N'2', N'12', N'3200', N'0', N'3', N'2', N'1800', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032005', N'Battle Helm', N'1', N'0', N'0', N'3', N'2', N'15', N'3200', N'0', N'3', N'2', N'1800', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032006', N'Devout Helm', N'1', N'0', N'0', N'3', N'2', N'18', N'3200', N'0', N'3', N'2', N'1800', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032007', N'Banded Helm', N'1', N'0', N'0', N'3', N'2', N'21', N'3200', N'0', N'3', N'2', N'1800', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032008', N'Linked Helm', N'1', N'0', N'0', N'3', N'2', N'24', N'3200', N'0', N'3', N'2', N'1800', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032009', N'Splinted Helm', N'1', N'0', N'0', N'3', N'2', N'27', N'3200', N'0', N'3', N'2', N'1800', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032010', N'Rivet Helm', N'1', N'0', N'0', N'3', N'2', N'30', N'3200', N'0', N'3', N'2', N'1800', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032011', N'Venetian Helm', N'1', N'0', N'0', N'3', N'2', N'33', N'3200', N'0', N'3', N'2', N'1800', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032012', N'Arquebus Helm', N'1', N'0', N'0', N'3', N'2', N'36', N'3200', N'0', N'3', N'2', N'1800', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032013', N'Acorn Helm', N'1', N'0', N'0', N'3', N'2', N'39', N'3200', N'0', N'3', N'2', N'1800', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032014', N'Aventail Helm', N'1', N'0', N'0', N'3', N'2', N'42', N'3200', N'0', N'3', N'2', N'1800', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032015', N'Janissary Helm', N'1', N'0', N'0', N'3', N'2', N'45', N'3200', N'0', N'3', N'2', N'1800', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032016', N'Genovese Helm', N'1', N'0', N'0', N'3', N'2', N'48', N'3200', N'0', N'3', N'2', N'1800', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032017', N'Teutonic Helm', N'1', N'0', N'0', N'3', N'2', N'51', N'3200', N'0', N'3', N'2', N'1800', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13032018', N'Natura Chain Helm', N'1', N'0', N'0', N'3', N'2', N'54', N'3200', N'0', N'3', N'2', N'1800', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034001', N'Gritty Helm', N'1', N'1', N'5', N'3', N'4', N'5', N'3400', N'1', N'3', N'2', N'1800', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034002', N'Heavy Helm', N'1', N'1', N'5', N'3', N'4', N'10', N'3400', N'1', N'3', N'2', N'1800', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034003', N'Ultimate Helm', N'1', N'1', N'5', N'3', N'4', N'15', N'3400', N'1', N'3', N'2', N'1800', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034004', N'Brisk Helm', N'1', N'1', N'5', N'3', N'4', N'20', N'3400', N'1', N'3', N'2', N'1800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034005', N'Bound Helm', N'1', N'1', N'5', N'3', N'4', N'25', N'3400', N'1', N'3', N'2', N'1800', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034006', N'Secure Helm', N'1', N'1', N'5', N'3', N'4', N'30', N'3400', N'1', N'3', N'2', N'1800', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034007', N'Devout Helm', N'1', N'1', N'5', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'1800', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034008', N'Solid Helm', N'1', N'1', N'5', N'3', N'4', N'40', N'3400', N'1', N'3', N'2', N'1800', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034009', N'Discarded Helm', N'1', N'1', N'5', N'3', N'4', N'45', N'3400', N'1', N'3', N'2', N'1800', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034010', N'Engraved Helm', N'1', N'1', N'5', N'3', N'4', N'50', N'3400', N'1', N'3', N'2', N'1800', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13034011', N'Cure Chain Helm', N'1', N'1', N'5', N'3', N'4', N'55', N'3400', N'1', N'3', N'2', N'1800', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035001', N'Dense Helm', N'1', N'1', N'3', N'3', N'5', N'10', N'3600', N'1', N'3', N'2', N'1800', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035002', N'Burnished Helm', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'1800', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035003', N'Ribbed Helm', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035004', N'Arcane Helm', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'1800', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035005', N'Ashen Helm', N'1', N'1', N'3', N'3', N'5', N'30', N'3600', N'1', N'3', N'2', N'1800', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035006', N'Placidus Helm', N'1', N'1', N'3', N'3', N'5', N'35', N'3600', N'1', N'3', N'2', N'1800', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035007', N'Armadillo Helm', N'1', N'1', N'3', N'3', N'5', N'40', N'3600', N'1', N'3', N'2', N'1800', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035008', N'Bulwark Helm', N'1', N'1', N'3', N'3', N'5', N'45', N'3600', N'1', N'3', N'2', N'1800', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035009', N'Cardiff Helm', N'1', N'1', N'3', N'3', N'5', N'50', N'3600', N'1', N'3', N'2', N'1800', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13035010', N'Armed Chain Helm', N'1', N'1', N'3', N'3', N'5', N'55', N'3600', N'1', N'3', N'2', N'1800', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041001', N'Preilic War Helm', N'1', N'0', N'0', N'4', N'1', N'2', N'3000', N'0', N'0', N'2', N'3400', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041002', N'Prelic War Helm', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'3400', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041003', N'Hauberk Helm', N'1', N'0', N'0', N'4', N'1', N'8', N'3000', N'0', N'0', N'2', N'3400', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041004', N'Scale Helm', N'1', N'0', N'0', N'4', N'1', N'11', N'3000', N'0', N'0', N'2', N'3400', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041005', N'Steel Helm', N'1', N'0', N'0', N'4', N'1', N'14', N'3000', N'0', N'0', N'2', N'3400', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041006', N'Spiral Helm', N'1', N'0', N'0', N'4', N'1', N'17', N'3000', N'0', N'0', N'2', N'3400', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041007', N'Hoplite Helm', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'3400', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041008', N'Full Helm', N'1', N'0', N'0', N'4', N'1', N'23', N'3000', N'0', N'0', N'2', N'3400', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041009', N'Ornate Helm', N'1', N'0', N'0', N'4', N'1', N'26', N'3000', N'0', N'0', N'2', N'3400', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041010', N'Rune Helm', N'1', N'0', N'0', N'4', N'1', N'29', N'3000', N'0', N'0', N'2', N'3400', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041011', N'Raven Helm', N'1', N'0', N'0', N'4', N'1', N'32', N'3000', N'0', N'0', N'2', N'3400', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041012', N'Castilian Helm', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'3400', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041013', N'Baleog Helm', N'1', N'0', N'0', N'4', N'1', N'38', N'3000', N'0', N'0', N'2', N'3400', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041014', N'Drake Helm', N'1', N'0', N'0', N'4', N'1', N'41', N'3000', N'0', N'0', N'2', N'3400', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041015', N'Crisis War Helm', N'1', N'0', N'0', N'4', N'1', N'44', N'3000', N'0', N'0', N'2', N'3400', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041016', N'Tarnished Plate', N'1', N'0', N'0', N'4', N'1', N'47', N'3000', N'0', N'0', N'2', N'3400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041017', N'Dragoon Helm', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'3400', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13041018', N'Repel War Helm', N'1', N'0', N'0', N'4', N'1', N'53', N'3000', N'0', N'0', N'2', N'3400', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042001', N'Preilic War Helm', N'1', N'0', N'0', N'4', N'2', N'3', N'3200', N'0', N'3', N'2', N'3400', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042002', N'Prelic War Helm', N'1', N'0', N'0', N'4', N'2', N'6', N'3200', N'0', N'3', N'2', N'3400', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042003', N'Hauberk Helm', N'1', N'0', N'0', N'4', N'2', N'9', N'3200', N'0', N'3', N'2', N'3400', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042004', N'Scale Helm', N'1', N'0', N'0', N'4', N'2', N'12', N'3200', N'0', N'3', N'2', N'3400', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042005', N'Steel Helm', N'1', N'0', N'0', N'4', N'2', N'15', N'3200', N'0', N'3', N'2', N'3400', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042006', N'Spiral Helm', N'1', N'0', N'0', N'4', N'2', N'18', N'3200', N'0', N'3', N'2', N'3400', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042007', N'Hoplite Helm', N'1', N'0', N'0', N'4', N'2', N'21', N'3200', N'0', N'3', N'2', N'3400', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042008', N'Full Helm', N'1', N'0', N'0', N'4', N'2', N'24', N'3200', N'0', N'3', N'2', N'3400', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042009', N'Ornate Helm', N'1', N'0', N'0', N'4', N'2', N'27', N'3200', N'0', N'3', N'2', N'3400', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042010', N'Rune Helm', N'1', N'0', N'0', N'4', N'2', N'30', N'3200', N'0', N'3', N'2', N'3400', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042011', N'Raven Helm', N'1', N'0', N'0', N'4', N'2', N'33', N'3200', N'0', N'3', N'2', N'3400', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042012', N'Castilian Helm', N'1', N'0', N'0', N'4', N'2', N'36', N'3200', N'0', N'3', N'2', N'3400', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042013', N'Baleog Helm', N'1', N'0', N'0', N'4', N'2', N'39', N'3200', N'0', N'3', N'2', N'3400', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042014', N'Drake Helm', N'1', N'0', N'0', N'4', N'2', N'42', N'3200', N'0', N'3', N'2', N'3400', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042015', N'Crisis War Helm', N'1', N'0', N'0', N'4', N'2', N'45', N'3200', N'0', N'3', N'2', N'3400', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042016', N'Tarnished Plate', N'1', N'0', N'0', N'4', N'2', N'48', N'3200', N'0', N'3', N'2', N'3400', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042017', N'Dragoon Helm', N'1', N'0', N'0', N'4', N'2', N'51', N'3200', N'0', N'3', N'2', N'3400', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13042018', N'Repel War Helm', N'1', N'0', N'0', N'4', N'2', N'54', N'3200', N'0', N'3', N'2', N'3400', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044001', N'Shining Helm', N'1', N'1', N'5', N'4', N'4', N'5', N'3400', N'1', N'3', N'2', N'3400', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044002', N'Dazzling Helm', N'1', N'1', N'5', N'4', N'4', N'10', N'3400', N'1', N'3', N'2', N'3400', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044003', N'Assault Helm', N'1', N'1', N'5', N'4', N'4', N'15', N'3400', N'1', N'3', N'2', N'3400', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044004', N'Gendarme Helm', N'1', N'1', N'5', N'4', N'4', N'20', N'3400', N'1', N'3', N'2', N'3400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044005', N'Enduring Helm', N'1', N'1', N'5', N'4', N'4', N'25', N'3400', N'1', N'3', N'2', N'3400', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044006', N'Jousting Helm', N'1', N'1', N'5', N'4', N'4', N'30', N'3400', N'1', N'3', N'2', N'3400', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044007', N'Stark Helm', N'1', N'1', N'5', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'3400', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044008', N'Menacing Helm', N'1', N'1', N'5', N'4', N'4', N'40', N'3400', N'1', N'3', N'2', N'3400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044009', N'Hazardous Helm', N'1', N'1', N'5', N'4', N'4', N'45', N'3400', N'1', N'3', N'2', N'3400', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044010', N'Expert Helm', N'1', N'1', N'5', N'4', N'4', N'50', N'3400', N'1', N'3', N'2', N'3400', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13044011', N'Suspicious War Helm', N'1', N'1', N'5', N'4', N'4', N'55', N'3400', N'1', N'3', N'2', N'3400', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045001', N'Doomed Helm', N'1', N'1', N'3', N'4', N'5', N'10', N'3600', N'1', N'3', N'2', N'3400', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045002', N'Essential Helm', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'3400', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045003', N'Blazing Helm', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045004', N'Infernal Helm', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'3400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045005', N'Field Marshal Helm', N'1', N'1', N'3', N'4', N'5', N'30', N'3600', N'1', N'3', N'2', N'3400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045006', N'Destined Helm', N'1', N'1', N'3', N'4', N'5', N'35', N'3600', N'1', N'3', N'2', N'3400', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045007', N'Knightly Helm', N'1', N'1', N'3', N'4', N'5', N'40', N'3600', N'1', N'3', N'2', N'3400', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045008', N'Fergana Helm', N'1', N'1', N'3', N'4', N'5', N'45', N'3600', N'1', N'3', N'2', N'3400', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045009', N'Avernus Helm', N'1', N'1', N'3', N'4', N'5', N'50', N'3600', N'1', N'3', N'2', N'3400', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'13045010', N'Flame war Helm', N'1', N'1', N'3', N'4', N'5', N'55', N'3600', N'1', N'3', N'2', N'3400', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011001', N'Apprentice Pants', N'1', N'0', N'0', N'1', N'1', N'1', N'4500', N'0', N'0', N'2', N'1100', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011002', N'Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'1', N'4500', N'0', N'0', N'2', N'1100', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011003', N'Linen Pants', N'1', N'0', N'0', N'1', N'1', N'4', N'4500', N'0', N'0', N'2', N'1100', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011004', N'Fleece Pants', N'1', N'0', N'0', N'1', N'1', N'7', N'4500', N'0', N'0', N'2', N'1100', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011005', N'Silky Yarn Pants', N'1', N'0', N'0', N'1', N'1', N'10', N'4500', N'0', N'0', N'2', N'1100', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011006', N'Wool Pants', N'1', N'0', N'0', N'1', N'1', N'13', N'4500', N'0', N'0', N'2', N'1100', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011007', N'Silk Pants', N'1', N'0', N'0', N'1', N'1', N'16', N'4500', N'0', N'0', N'2', N'1100', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011008', N'Ram''s Wool Pants', N'1', N'0', N'0', N'1', N'1', N'19', N'4500', N'0', N'0', N'2', N'1100', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011009', N'Muslin Pants', N'1', N'0', N'0', N'1', N'1', N'22', N'4500', N'0', N'0', N'2', N'1100', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011010', N'Luna Pants', N'1', N'0', N'0', N'1', N'1', N'25', N'4500', N'0', N'0', N'2', N'1100', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011011', N'Celestial Pants', N'1', N'0', N'0', N'1', N'1', N'28', N'4500', N'0', N'0', N'2', N'1100', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011012', N'Mystical Pants', N'1', N'0', N'0', N'1', N'1', N'31', N'4500', N'0', N'0', N'2', N'1100', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011013', N'Sorceress Pants', N'1', N'0', N'0', N'1', N'1', N'34', N'4500', N'0', N'0', N'2', N'1100', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011014', N'Angora Pants', N'1', N'0', N'0', N'1', N'1', N'37', N'4500', N'0', N'0', N'2', N'1100', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011015', N'Aramid Pants', N'1', N'0', N'0', N'1', N'1', N'40', N'4500', N'0', N'0', N'2', N'1100', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011016', N'Berber Leggings', N'1', N'0', N'0', N'1', N'1', N'43', N'4500', N'0', N'0', N'2', N'1100', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011017', N'Brocade Leggings', N'1', N'0', N'0', N'1', N'1', N'46', N'4500', N'0', N'0', N'2', N'1100', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011018', N'Doeskin Leggings', N'1', N'0', N'0', N'1', N'1', N'49', N'4500', N'0', N'0', N'2', N'1100', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011019', N'Tartan Leggings', N'1', N'0', N'0', N'1', N'1', N'52', N'4500', N'0', N'0', N'2', N'1100', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14011020', N'Weaving Leggings', N'1', N'0', N'0', N'1', N'1', N'55', N'4500', N'0', N'0', N'2', N'1100', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012001', N'Fabric Pants', N'1', N'0', N'0', N'1', N'2', N'2', N'5000', N'0', N'3', N'2', N'1100', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012002', N'Linen Pants', N'1', N'0', N'0', N'1', N'2', N'5', N'5000', N'0', N'3', N'2', N'1100', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012003', N'Fleece Pants', N'1', N'0', N'0', N'1', N'2', N'8', N'5000', N'0', N'3', N'2', N'1100', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012004', N'Silky Yarn Pants', N'1', N'0', N'0', N'1', N'2', N'11', N'5000', N'0', N'3', N'2', N'1100', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012005', N'Wool Pants', N'1', N'0', N'0', N'1', N'2', N'14', N'5000', N'0', N'3', N'2', N'1100', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012006', N'Silk Pants', N'1', N'0', N'0', N'1', N'2', N'17', N'5000', N'0', N'3', N'2', N'1100', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012007', N'Ram''s Wool Pants', N'1', N'0', N'0', N'1', N'2', N'20', N'5000', N'0', N'3', N'2', N'1100', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012008', N'Muslin Pants', N'1', N'0', N'0', N'1', N'2', N'23', N'5000', N'0', N'3', N'2', N'1100', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012009', N'Luna Pants', N'1', N'0', N'0', N'1', N'2', N'26', N'5000', N'0', N'3', N'2', N'1100', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012010', N'Celestial Pants', N'1', N'0', N'0', N'1', N'2', N'29', N'5000', N'0', N'3', N'2', N'1100', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012011', N'Mystical Pants', N'1', N'0', N'0', N'1', N'2', N'32', N'5000', N'0', N'3', N'2', N'1100', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012012', N'Sorceress Pants', N'1', N'0', N'0', N'1', N'2', N'35', N'5000', N'0', N'3', N'2', N'1100', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012013', N'Angora Pants', N'1', N'0', N'0', N'1', N'2', N'38', N'5000', N'0', N'3', N'2', N'1100', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012014', N'Aramid Pants', N'1', N'0', N'0', N'1', N'2', N'41', N'5000', N'0', N'3', N'2', N'1100', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012015', N'Berber Leggings', N'1', N'0', N'0', N'1', N'2', N'44', N'5000', N'0', N'3', N'2', N'1100', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012016', N'Brocade Leggings', N'1', N'0', N'0', N'1', N'2', N'47', N'5000', N'0', N'3', N'2', N'1100', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012017', N'Doeskin Leggings', N'1', N'0', N'0', N'1', N'2', N'50', N'5000', N'0', N'3', N'2', N'1100', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14012018', N'Tartan Leggings', N'1', N'0', N'0', N'1', N'2', N'53', N'5000', N'0', N'3', N'2', N'1100', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014001', N'Lavish Pants', N'1', N'1', N'5', N'1', N'4', N'5', N'5500', N'1', N'3', N'2', N'1100', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014002', N'Insidious Pants', N'1', N'1', N'5', N'1', N'4', N'10', N'5500', N'1', N'3', N'2', N'1100', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014003', N'Exceptional Pants', N'1', N'1', N'5', N'1', N'4', N'15', N'5500', N'1', N'3', N'2', N'1100', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014004', N'Fervid Pants', N'1', N'1', N'5', N'1', N'4', N'20', N'5500', N'1', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014005', N'Nefarious Pants', N'1', N'1', N'5', N'1', N'4', N'25', N'5500', N'1', N'3', N'2', N'1100', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014006', N'Diabolic Pants', N'1', N'1', N'5', N'1', N'4', N'30', N'5500', N'1', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014007', N'Sacred Pants', N'1', N'1', N'5', N'1', N'4', N'35', N'5500', N'1', N'3', N'2', N'1100', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014008', N'Devious Pants', N'1', N'1', N'5', N'1', N'4', N'40', N'5500', N'1', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014009', N'Distinct Pants', N'1', N'1', N'5', N'1', N'4', N'45', N'5500', N'1', N'3', N'2', N'1100', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014010', N'Taffeta Pants', N'1', N'1', N'5', N'1', N'4', N'50', N'5500', N'1', N'3', N'2', N'1100', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14014011', N'Obscure Leggings', N'1', N'1', N'5', N'1', N'4', N'55', N'5500', N'1', N'3', N'2', N'1100', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015001', N'Vital Pants', N'1', N'1', N'3', N'1', N'5', N'10', N'6000', N'1', N'3', N'2', N'1100', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015002', N'Wisdom Pants', N'1', N'1', N'3', N'1', N'5', N'15', N'6000', N'1', N'3', N'2', N'1100', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015003', N'Bentus Pants', N'1', N'1', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015004', N'Raschel Pants', N'1', N'1', N'3', N'1', N'5', N'25', N'6000', N'1', N'3', N'2', N'1100', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015005', N'Calico Pants', N'1', N'1', N'3', N'1', N'5', N'30', N'6000', N'1', N'3', N'2', N'1100', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015006', N'Lumen Pants', N'1', N'1', N'3', N'1', N'5', N'35', N'6000', N'1', N'3', N'2', N'1100', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015007', N'Starlight Pants', N'1', N'1', N'3', N'1', N'5', N'40', N'6000', N'1', N'3', N'2', N'1100', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015008', N'Fluer Pants', N'1', N'1', N'3', N'1', N'5', N'45', N'6000', N'1', N'3', N'2', N'1100', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015009', N'Pincord Pants', N'1', N'1', N'3', N'1', N'5', N'50', N'6000', N'1', N'3', N'2', N'1100', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14015010', N'Dusk Leggings', N'1', N'1', N'3', N'1', N'5', N'55', N'6000', N'1', N'3', N'2', N'1100', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021001', N'Apprentice Leather Pants', N'1', N'0', N'0', N'2', N'1', N'1', N'4500', N'0', N'0', N'2', N'1600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021002', N'Light Leather Pants', N'1', N'0', N'0', N'2', N'1', N'1', N'4500', N'0', N'0', N'2', N'1600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021003', N'Leather Pants', N'1', N'0', N'0', N'2', N'1', N'4', N'4500', N'0', N'0', N'2', N'1600', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021004', N'Quilted Leather Pants', N'1', N'0', N'0', N'2', N'1', N'7', N'4500', N'0', N'0', N'2', N'1600', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021005', N'Studded Leather Pants', N'1', N'0', N'0', N'2', N'1', N'10', N'4500', N'0', N'0', N'2', N'1600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021006', N'Hunter Pants', N'1', N'0', N'0', N'2', N'1', N'13', N'4500', N'0', N'0', N'2', N'1600', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021007', N'Carp Pants', N'1', N'0', N'0', N'2', N'1', N'16', N'4500', N'0', N'0', N'2', N'1600', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021008', N'Suede Pants', N'1', N'0', N'0', N'2', N'1', N'19', N'4500', N'0', N'0', N'2', N'1600', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021009', N'Nubuck Pants', N'1', N'0', N'0', N'2', N'1', N'22', N'4500', N'0', N'0', N'2', N'1600', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021010', N'Slink Pants', N'1', N'0', N'0', N'2', N'1', N'25', N'4500', N'0', N'0', N'2', N'1600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021011', N'Hide Pants', N'1', N'0', N'0', N'2', N'1', N'28', N'4500', N'0', N'0', N'2', N'1600', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021012', N'Buckskin Pants', N'1', N'0', N'0', N'2', N'1', N'31', N'4500', N'0', N'0', N'2', N'1600', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021013', N'Shagreen Pants', N'1', N'0', N'0', N'2', N'1', N'34', N'4500', N'0', N'0', N'2', N'1600', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021014', N'Lamellar Pants', N'1', N'0', N'0', N'2', N'1', N'37', N'4500', N'0', N'0', N'2', N'1600', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021015', N'Brigandine Pants', N'1', N'0', N'0', N'2', N'1', N'40', N'4500', N'0', N'0', N'2', N'1600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021016', N'Lorica Leggings', N'1', N'0', N'0', N'2', N'1', N'43', N'4500', N'0', N'0', N'2', N'1600', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021017', N'Swollen Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'46', N'4500', N'0', N'0', N'2', N'1600', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021018', N'Sinful Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'49', N'4500', N'0', N'0', N'2', N'1600', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021019', N'Diaz Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'52', N'4500', N'0', N'0', N'2', N'1600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14021020', N'Artisanal Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'55', N'4500', N'0', N'0', N'2', N'1600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022001', N'Light Leather Pants', N'1', N'0', N'0', N'2', N'2', N'2', N'5000', N'0', N'3', N'2', N'1600', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022002', N'Leather Pants', N'1', N'0', N'0', N'2', N'2', N'5', N'5000', N'0', N'3', N'2', N'1600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022003', N'Quilted Leather Pants', N'1', N'0', N'0', N'2', N'2', N'8', N'5000', N'0', N'3', N'2', N'1600', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022004', N'Studded Leather Pants', N'1', N'0', N'0', N'2', N'2', N'11', N'5000', N'0', N'3', N'2', N'1600', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022005', N'Hunter Pants', N'1', N'0', N'0', N'2', N'2', N'14', N'5000', N'0', N'3', N'2', N'1600', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022006', N'Carp Pants', N'1', N'0', N'0', N'2', N'2', N'17', N'5000', N'0', N'3', N'2', N'1600', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022007', N'Suede Pants', N'1', N'0', N'0', N'2', N'2', N'20', N'5000', N'0', N'3', N'2', N'1600', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022008', N'Nubuck Pants', N'1', N'0', N'0', N'2', N'2', N'23', N'5000', N'0', N'3', N'2', N'1600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022009', N'Slink Pants', N'1', N'0', N'0', N'2', N'2', N'26', N'5000', N'0', N'3', N'2', N'1600', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022010', N'Hide Pants', N'1', N'0', N'0', N'2', N'2', N'29', N'5000', N'0', N'3', N'2', N'1600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022011', N'Buckskin Pants', N'1', N'0', N'0', N'2', N'2', N'32', N'5000', N'0', N'3', N'2', N'1600', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022012', N'Shagreen Pants', N'1', N'0', N'0', N'2', N'2', N'35', N'5000', N'0', N'3', N'2', N'1600', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022013', N'Lamellar Pants', N'1', N'0', N'0', N'2', N'2', N'38', N'5000', N'0', N'3', N'2', N'1600', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022014', N'Brigandine Pants', N'1', N'0', N'0', N'2', N'2', N'41', N'5000', N'0', N'3', N'2', N'1600', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022015', N'Lorica Leggings', N'1', N'0', N'0', N'2', N'2', N'44', N'5000', N'0', N'3', N'2', N'1600', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022016', N'Swollen Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'47', N'5000', N'0', N'3', N'2', N'1600', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022017', N'Sinful Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'50', N'5000', N'0', N'3', N'2', N'1600', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14022018', N'Diaz Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'53', N'5000', N'0', N'3', N'2', N'1600', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024001', N'Authentic Pants', N'1', N'1', N'5', N'2', N'4', N'5', N'5500', N'1', N'3', N'2', N'1600', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024002', N'Camouflage Pants', N'1', N'1', N'5', N'2', N'4', N'10', N'5500', N'1', N'3', N'2', N'1600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024003', N'Illicit Pants', N'1', N'1', N'5', N'2', N'4', N'15', N'5500', N'1', N'3', N'2', N'1600', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024004', N'Rugged Pants', N'1', N'1', N'5', N'2', N'4', N'20', N'5500', N'1', N'3', N'2', N'1600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024005', N'Dread Pants', N'1', N'1', N'5', N'2', N'4', N'25', N'5500', N'1', N'3', N'2', N'1600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024006', N'Tough Pants', N'1', N'1', N'5', N'2', N'4', N'30', N'5500', N'1', N'3', N'2', N'1600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024007', N'Haken-hide Pants', N'1', N'1', N'5', N'2', N'4', N'35', N'5500', N'1', N'3', N'2', N'1600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024008', N'Combat Pants', N'1', N'1', N'5', N'2', N'4', N'40', N'5500', N'1', N'3', N'2', N'1600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024009', N'Genuine Pants', N'1', N'1', N'5', N'2', N'4', N'45', N'5500', N'1', N'3', N'2', N'1600', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024010', N'Superior Pants', N'1', N'1', N'5', N'2', N'4', N'50', N'5500', N'1', N'3', N'2', N'1600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14024011', N'Posh Leather Leggings', N'1', N'1', N'5', N'2', N'4', N'55', N'5500', N'1', N'3', N'2', N'1600', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025001', N'Tanned Pants', N'1', N'1', N'3', N'2', N'5', N'10', N'6000', N'1', N'3', N'2', N'1600', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025002', N'Rawhide Pants', N'1', N'1', N'3', N'2', N'5', N'15', N'6000', N'1', N'3', N'2', N'1600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025003', N'Demonic Pants', N'1', N'1', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025004', N'Praetorian Pants', N'1', N'1', N'3', N'2', N'5', N'25', N'6000', N'1', N'3', N'2', N'1600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025005', N'Lacrimal Pants', N'1', N'1', N'3', N'2', N'5', N'30', N'6000', N'1', N'3', N'2', N'1600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025006', N'Eminent Pants', N'1', N'1', N'3', N'2', N'5', N'35', N'6000', N'1', N'3', N'2', N'1600', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025007', N'Aquarius Pants', N'1', N'1', N'3', N'2', N'5', N'40', N'6000', N'1', N'3', N'2', N'1600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025008', N'Rogue Pants', N'1', N'1', N'3', N'2', N'5', N'45', N'6000', N'1', N'3', N'2', N'1600', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025009', N'Fianna Pants', N'1', N'1', N'3', N'2', N'5', N'50', N'6000', N'1', N'3', N'2', N'1600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14025010', N'Arcane Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'55', N'6000', N'1', N'3', N'2', N'1600', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031001', N'Apprentice Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'1', N'4500', N'0', N'0', N'2', N'2400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031002', N'Ringed Greaves', N'1', N'0', N'0', N'3', N'1', N'1', N'4500', N'0', N'0', N'2', N'2400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031003', N'Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'4', N'4500', N'0', N'0', N'2', N'2400', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031004', N'Wire Greaves', N'1', N'0', N'0', N'3', N'1', N'7', N'4500', N'0', N'0', N'2', N'2400', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031005', N'Hunter Greaves', N'1', N'0', N'0', N'3', N'1', N'10', N'4500', N'0', N'0', N'2', N'2400', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031006', N'Battle Greaves', N'1', N'0', N'0', N'3', N'1', N'13', N'4500', N'0', N'0', N'2', N'2400', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031007', N'Devout Greaves', N'1', N'0', N'0', N'3', N'1', N'16', N'4500', N'0', N'0', N'2', N'2400', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031008', N'Banded Greaves', N'1', N'0', N'0', N'3', N'1', N'19', N'4500', N'0', N'0', N'2', N'2400', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031009', N'Linked Greaves', N'1', N'0', N'0', N'3', N'1', N'22', N'4500', N'0', N'0', N'2', N'2400', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031010', N'Splinted Greaves', N'1', N'0', N'0', N'3', N'1', N'25', N'4500', N'0', N'0', N'2', N'2400', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031011', N'Rivet Greaves', N'1', N'0', N'0', N'3', N'1', N'28', N'4500', N'0', N'0', N'2', N'2400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031012', N'Venetian Greaves', N'1', N'0', N'0', N'3', N'1', N'31', N'4500', N'0', N'0', N'2', N'2400', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031013', N'Arquebus Greaves', N'1', N'0', N'0', N'3', N'1', N'34', N'4500', N'0', N'0', N'2', N'2400', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031014', N'Acorn Greaves', N'1', N'0', N'0', N'3', N'1', N'37', N'4500', N'0', N'0', N'2', N'2400', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031015', N'Aventail Greaves', N'1', N'0', N'0', N'3', N'1', N'40', N'4500', N'0', N'0', N'2', N'2400', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031016', N'Janissary Greave', N'1', N'0', N'0', N'3', N'1', N'43', N'4500', N'0', N'0', N'2', N'2400', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031017', N'Genovese Greave', N'1', N'0', N'0', N'3', N'1', N'46', N'4500', N'0', N'0', N'2', N'2400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031018', N'Teutonic Greave', N'1', N'0', N'0', N'3', N'1', N'49', N'4500', N'0', N'0', N'2', N'2400', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031019', N'Uniform Greaves', N'1', N'0', N'0', N'3', N'1', N'52', N'4500', N'0', N'0', N'2', N'2400', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14031020', N'Concours Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'55', N'4500', N'0', N'0', N'2', N'2400', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032001', N'Ringed Greaves', N'1', N'0', N'0', N'3', N'2', N'2', N'5000', N'0', N'3', N'2', N'2400', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032002', N'Chain Greaves', N'1', N'0', N'0', N'3', N'2', N'5', N'5000', N'0', N'3', N'2', N'2400', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032003', N'Wire Greaves', N'1', N'0', N'0', N'3', N'2', N'8', N'5000', N'0', N'3', N'2', N'2400', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032004', N'Hunter Greaves', N'1', N'0', N'0', N'3', N'2', N'11', N'5000', N'0', N'3', N'2', N'2400', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032005', N'Battle Greaves', N'1', N'0', N'0', N'3', N'2', N'14', N'5000', N'0', N'3', N'2', N'2400', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032006', N'Devout Greaves', N'1', N'0', N'0', N'3', N'2', N'17', N'5000', N'0', N'3', N'2', N'2400', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032007', N'Banded Greaves', N'1', N'0', N'0', N'3', N'2', N'20', N'5000', N'0', N'3', N'2', N'2400', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032008', N'Linked Greaves', N'1', N'0', N'0', N'3', N'2', N'23', N'5000', N'0', N'3', N'2', N'2400', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032009', N'Splinted Greaves', N'1', N'0', N'0', N'3', N'2', N'26', N'5000', N'0', N'3', N'2', N'2400', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032010', N'Rivet Greaves', N'1', N'0', N'0', N'3', N'2', N'29', N'5000', N'0', N'3', N'2', N'2400', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032011', N'Venetian Greaves', N'1', N'0', N'0', N'3', N'2', N'32', N'5000', N'0', N'3', N'2', N'2400', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032012', N'Arquebus Greaves', N'1', N'0', N'0', N'3', N'2', N'35', N'5000', N'0', N'3', N'2', N'2400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032013', N'Acorn Greaves', N'1', N'0', N'0', N'3', N'2', N'38', N'5000', N'0', N'3', N'2', N'2400', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032014', N'Aventail Greaves', N'1', N'0', N'0', N'3', N'2', N'41', N'5000', N'0', N'3', N'2', N'2400', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032015', N'Janissary Greave', N'1', N'0', N'0', N'3', N'2', N'44', N'5000', N'0', N'3', N'2', N'2400', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032016', N'Genovese Greave', N'1', N'0', N'0', N'3', N'2', N'47', N'5000', N'0', N'3', N'2', N'2400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032017', N'Teutonic Greave', N'1', N'0', N'0', N'3', N'2', N'50', N'5000', N'0', N'3', N'2', N'2400', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14032018', N'Uniform Greaves', N'1', N'0', N'0', N'3', N'2', N'53', N'5000', N'0', N'3', N'2', N'2400', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034001', N'Gritty Greaves', N'1', N'1', N'5', N'3', N'4', N'5', N'5500', N'1', N'3', N'2', N'2400', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034002', N'Heavy Greaves', N'1', N'1', N'5', N'3', N'4', N'10', N'5500', N'1', N'3', N'2', N'2400', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034003', N'Ultimate Greaves', N'1', N'1', N'5', N'3', N'4', N'15', N'5500', N'1', N'3', N'2', N'2400', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034004', N'Brisk Greaves', N'1', N'1', N'5', N'3', N'4', N'20', N'5500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034005', N'Bound Greaves', N'1', N'1', N'5', N'3', N'4', N'25', N'5500', N'1', N'3', N'2', N'2400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034006', N'Secure Greaves', N'1', N'1', N'5', N'3', N'4', N'30', N'5500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034007', N'Devout Greaves', N'1', N'1', N'5', N'3', N'4', N'35', N'5500', N'1', N'3', N'2', N'2400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034008', N'Solid Greaves', N'1', N'1', N'5', N'3', N'4', N'40', N'5500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034009', N'Discarded Greaves', N'1', N'1', N'5', N'3', N'4', N'45', N'5500', N'1', N'3', N'2', N'2400', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034010', N'Engraved Greaves', N'1', N'1', N'5', N'3', N'4', N'50', N'5500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14034011', N'Cure Chain Greaves', N'1', N'1', N'5', N'3', N'4', N'55', N'5500', N'1', N'3', N'2', N'2400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035001', N'Dense Greaves', N'1', N'1', N'3', N'3', N'5', N'10', N'6000', N'1', N'3', N'2', N'2400', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035002', N'Burnished Greaves', N'1', N'1', N'3', N'3', N'5', N'15', N'6000', N'1', N'3', N'2', N'2400', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035003', N'Ribbed Greaves', N'1', N'1', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035004', N'Arcane Greaves', N'1', N'1', N'3', N'3', N'5', N'25', N'6000', N'1', N'3', N'2', N'2400', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035005', N'Ashen Greaves', N'1', N'1', N'3', N'3', N'5', N'30', N'6000', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035006', N'Placidus Greaves', N'1', N'1', N'3', N'3', N'5', N'35', N'6000', N'1', N'3', N'2', N'2400', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035007', N'Armadillo Greaves', N'1', N'1', N'3', N'3', N'5', N'40', N'6000', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035008', N'Bulwark Greaves', N'1', N'1', N'3', N'3', N'5', N'45', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035009', N'Cardiff Greaves', N'1', N'1', N'3', N'3', N'5', N'50', N'6000', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14035010', N'Armed Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'55', N'6000', N'1', N'3', N'2', N'2400', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041001', N'Apprentice Plate Greaves', N'1', N'0', N'0', N'4', N'1', N'1', N'4500', N'0', N'0', N'2', N'4600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041002', N'Prelic Greaves', N'1', N'0', N'0', N'4', N'1', N'1', N'4500', N'0', N'0', N'2', N'4600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041003', N'Padded Greaves', N'1', N'0', N'0', N'4', N'1', N'4', N'4500', N'0', N'0', N'2', N'4600', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041004', N'Hauberk Greaves', N'1', N'0', N'0', N'4', N'1', N'7', N'4500', N'0', N'0', N'2', N'4600', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041005', N'Scale Greaves', N'1', N'0', N'0', N'4', N'1', N'10', N'4500', N'0', N'0', N'2', N'4600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041006', N'Steel Greaves', N'1', N'0', N'0', N'4', N'1', N'13', N'4500', N'0', N'0', N'2', N'4600', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041007', N'Spiral Greaves', N'1', N'0', N'0', N'4', N'1', N'16', N'4500', N'0', N'0', N'2', N'4600', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041008', N'Hoplite Greaves', N'1', N'0', N'0', N'4', N'1', N'19', N'4500', N'0', N'0', N'2', N'4600', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041009', N'Full Greaves', N'1', N'0', N'0', N'4', N'1', N'22', N'4500', N'0', N'0', N'2', N'4600', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041010', N'Ornate Greaves', N'1', N'0', N'0', N'4', N'1', N'25', N'4500', N'0', N'0', N'2', N'4600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041011', N'Rune Greaves', N'1', N'0', N'0', N'4', N'1', N'28', N'4500', N'0', N'0', N'2', N'4600', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041012', N'Raven Greaves', N'1', N'0', N'0', N'4', N'1', N'31', N'4500', N'0', N'0', N'2', N'4600', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041013', N'Castilian Greaves', N'1', N'0', N'0', N'4', N'1', N'34', N'4500', N'0', N'0', N'2', N'4600', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041014', N'Baleog Greaves', N'1', N'0', N'0', N'4', N'1', N'37', N'4500', N'0', N'0', N'2', N'4600', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041015', N'Drake Greaves', N'1', N'0', N'0', N'4', N'1', N'40', N'4500', N'0', N'0', N'2', N'4600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041016', N'Crisis War Greave', N'1', N'0', N'0', N'4', N'1', N'43', N'4500', N'0', N'0', N'2', N'4600', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041017', N'Travirun War Greave ', N'1', N'0', N'0', N'4', N'1', N'46', N'4500', N'0', N'0', N'2', N'4600', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041018', N'Dragoon Greave', N'1', N'0', N'0', N'4', N'1', N'49', N'4500', N'0', N'0', N'2', N'4600', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041019', N'Reflective Greave', N'1', N'0', N'0', N'4', N'1', N'52', N'4500', N'0', N'0', N'2', N'4600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14041020', N'Watcher''s War Greaves', N'1', N'0', N'0', N'4', N'1', N'55', N'4500', N'0', N'0', N'2', N'4600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042001', N'Prelic Greaves', N'1', N'0', N'0', N'4', N'2', N'2', N'5000', N'0', N'3', N'2', N'4600', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042002', N'Padded Greaves', N'1', N'0', N'0', N'4', N'2', N'5', N'5000', N'0', N'3', N'2', N'4600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042003', N'Hauberk Greaves', N'1', N'0', N'0', N'4', N'2', N'8', N'5000', N'0', N'3', N'2', N'4600', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042004', N'Scale Greaves', N'1', N'0', N'0', N'4', N'2', N'11', N'5000', N'0', N'3', N'2', N'4600', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042005', N'Steel Greaves', N'1', N'0', N'0', N'4', N'2', N'14', N'5000', N'0', N'3', N'2', N'4600', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042006', N'Spiral Greaves', N'1', N'0', N'0', N'4', N'2', N'17', N'5000', N'0', N'3', N'2', N'4600', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042007', N'Hoplite Greaves', N'1', N'0', N'0', N'4', N'2', N'20', N'5000', N'0', N'3', N'2', N'4600', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042008', N'Full Greaves', N'1', N'0', N'0', N'4', N'2', N'23', N'5000', N'0', N'3', N'2', N'4600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042009', N'Ornate Greaves', N'1', N'0', N'0', N'4', N'2', N'26', N'5000', N'0', N'3', N'2', N'4600', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042010', N'Rune Greaves', N'1', N'0', N'0', N'4', N'2', N'29', N'5000', N'0', N'3', N'2', N'4600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042011', N'Raven Greaves', N'1', N'0', N'0', N'4', N'2', N'32', N'5000', N'0', N'3', N'2', N'4600', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042012', N'Castilian Greaves', N'1', N'0', N'0', N'4', N'2', N'35', N'5000', N'0', N'3', N'2', N'4600', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042013', N'Baleog Greaves', N'1', N'0', N'0', N'4', N'2', N'38', N'5000', N'0', N'3', N'2', N'4600', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042014', N'Drake Greaves', N'1', N'0', N'0', N'4', N'2', N'41', N'5000', N'0', N'3', N'2', N'4600', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042015', N'Crisis War Greave', N'1', N'0', N'0', N'4', N'2', N'44', N'5000', N'0', N'3', N'2', N'4600', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042016', N'Travirun War Greave ', N'1', N'0', N'0', N'4', N'2', N'47', N'5000', N'0', N'3', N'2', N'4600', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042017', N'Dragoon Greave', N'1', N'0', N'0', N'4', N'2', N'50', N'5000', N'0', N'3', N'2', N'4600', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14042018', N'Reflective Greave', N'1', N'0', N'0', N'4', N'2', N'53', N'5000', N'0', N'3', N'2', N'4600', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044001', N'Shining Greaves', N'1', N'1', N'5', N'4', N'4', N'5', N'5500', N'1', N'3', N'2', N'4600', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044002', N'Dazzling Greaves', N'1', N'1', N'5', N'4', N'4', N'10', N'5500', N'1', N'3', N'2', N'4600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044003', N'Assault Greaves', N'1', N'1', N'5', N'4', N'4', N'15', N'5500', N'1', N'3', N'2', N'4600', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044004', N'Gendarme Greaves', N'1', N'1', N'5', N'4', N'4', N'20', N'5500', N'1', N'3', N'2', N'4600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044005', N'Enduring Greaves', N'1', N'1', N'5', N'4', N'4', N'25', N'5500', N'1', N'3', N'2', N'4600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044006', N'Jousting Greaves', N'1', N'1', N'5', N'4', N'4', N'30', N'5500', N'1', N'3', N'2', N'4600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044007', N'Stark Greaves', N'1', N'1', N'5', N'4', N'4', N'35', N'5500', N'1', N'3', N'2', N'4600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044008', N'Menacing Greaves', N'1', N'1', N'5', N'4', N'4', N'40', N'5500', N'1', N'3', N'2', N'4600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044009', N'Hazardous Greaves', N'1', N'1', N'5', N'4', N'4', N'45', N'5500', N'1', N'3', N'2', N'4600', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044010', N'Expert Greaves', N'1', N'1', N'5', N'4', N'4', N'50', N'5500', N'1', N'3', N'2', N'4600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14044011', N'Suspicious War Greaves', N'1', N'1', N'5', N'4', N'4', N'55', N'5500', N'1', N'3', N'2', N'4600', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045001', N'Doomed Greaves', N'1', N'1', N'3', N'4', N'5', N'10', N'6000', N'1', N'3', N'2', N'4600', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045002', N'Essential Greaves', N'1', N'1', N'3', N'4', N'5', N'15', N'6000', N'1', N'3', N'2', N'4600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045003', N'Blazing Greaves', N'1', N'1', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'4600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045004', N'Infernal Greaves', N'1', N'1', N'3', N'4', N'5', N'25', N'6000', N'1', N'3', N'2', N'4600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045005', N'Field Marshal Greaves', N'1', N'1', N'3', N'4', N'5', N'30', N'6000', N'1', N'3', N'2', N'4600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045006', N'Destined Greaves', N'1', N'1', N'3', N'4', N'5', N'35', N'6000', N'1', N'3', N'2', N'4600', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045007', N'Knightly Greaves', N'1', N'1', N'3', N'4', N'5', N'40', N'6000', N'1', N'3', N'2', N'4600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045008', N'Fergana Greaves', N'1', N'1', N'3', N'4', N'5', N'45', N'6000', N'1', N'3', N'2', N'4600', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045009', N'Avernus Greaves', N'1', N'1', N'3', N'4', N'5', N'50', N'6000', N'1', N'3', N'2', N'4600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'14045010', N'Flame War Greaves', N'1', N'1', N'3', N'4', N'5', N'55', N'6000', N'1', N'3', N'2', N'4600', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011001', N'Fabric Shoes', N'1', N'0', N'0', N'1', N'1', N'3', N'4000', N'0', N'0', N'2', N'600', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011002', N'Linen Shoes', N'1', N'0', N'0', N'1', N'1', N'6', N'4000', N'0', N'0', N'2', N'600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011003', N'Fleece Shoes', N'1', N'0', N'0', N'1', N'1', N'9', N'4000', N'0', N'0', N'2', N'600', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011004', N'Silky Yarn Shoes', N'1', N'0', N'0', N'1', N'1', N'12', N'4000', N'0', N'0', N'2', N'600', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011005', N'Wool Shoes', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011006', N'Silk Shoes', N'1', N'0', N'0', N'1', N'1', N'18', N'4000', N'0', N'0', N'2', N'600', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011007', N'Ram''s Wool Shoes', N'1', N'0', N'0', N'1', N'1', N'21', N'4000', N'0', N'0', N'2', N'600', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011008', N'Muslin Shoes', N'1', N'0', N'0', N'1', N'1', N'24', N'4000', N'0', N'0', N'2', N'600', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011009', N'Luna Shoes', N'1', N'0', N'0', N'1', N'1', N'27', N'4000', N'0', N'0', N'2', N'600', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011010', N'Celestial Shoes', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011011', N'Mystical Shoes', N'1', N'0', N'0', N'1', N'1', N'33', N'4000', N'0', N'0', N'2', N'600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011012', N'Sorceress Shoes', N'1', N'0', N'0', N'1', N'1', N'36', N'4000', N'0', N'0', N'2', N'600', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011013', N'Angora Shoes', N'1', N'0', N'0', N'1', N'1', N'39', N'4000', N'0', N'0', N'2', N'600', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011014', N'Aramid Shoes', N'1', N'0', N'0', N'1', N'1', N'42', N'4000', N'0', N'0', N'2', N'600', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011015', N'Berber Shoes', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011016', N'Brocade Shoes', N'1', N'0', N'0', N'1', N'1', N'48', N'4000', N'0', N'0', N'2', N'600', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011017', N'Doeskin Shoes', N'1', N'0', N'0', N'1', N'1', N'51', N'4000', N'0', N'0', N'2', N'600', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15011018', N'Nea Shoes', N'1', N'0', N'0', N'1', N'1', N'54', N'4000', N'0', N'0', N'2', N'600', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012001', N'Fabric Shoes', N'1', N'0', N'0', N'1', N'2', N'4', N'4200', N'0', N'3', N'2', N'600', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012002', N'Linen Shoes', N'1', N'0', N'0', N'1', N'2', N'7', N'4200', N'0', N'3', N'2', N'600', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012003', N'Fleece Shoes', N'1', N'0', N'0', N'1', N'2', N'10', N'4200', N'0', N'3', N'2', N'600', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012004', N'Silky Yarn Shoes', N'1', N'0', N'0', N'1', N'2', N'13', N'4200', N'0', N'3', N'2', N'600', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012005', N'Wool Shoes', N'1', N'0', N'0', N'1', N'2', N'16', N'4200', N'0', N'3', N'2', N'600', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012006', N'Silk Shoes', N'1', N'0', N'0', N'1', N'2', N'19', N'4200', N'0', N'3', N'2', N'600', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012007', N'Ram''s Wool Shoes', N'1', N'0', N'0', N'1', N'2', N'22', N'4200', N'0', N'3', N'2', N'600', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012008', N'Muslin Shoes', N'1', N'0', N'0', N'1', N'2', N'25', N'4200', N'0', N'3', N'2', N'600', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012009', N'Luna Shoes', N'1', N'0', N'0', N'1', N'2', N'28', N'4200', N'0', N'3', N'2', N'600', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012010', N'Celestial Shoes', N'1', N'0', N'0', N'1', N'2', N'31', N'4200', N'0', N'3', N'2', N'600', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012011', N'Mystical Shoes', N'1', N'0', N'0', N'1', N'2', N'34', N'4200', N'0', N'3', N'2', N'600', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012012', N'Sorceress Shoes', N'1', N'0', N'0', N'1', N'2', N'37', N'4200', N'0', N'3', N'2', N'600', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012013', N'Angora Shoes', N'1', N'0', N'0', N'1', N'2', N'40', N'4200', N'0', N'3', N'2', N'600', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012014', N'Aramid Shoes', N'1', N'0', N'0', N'1', N'2', N'43', N'4200', N'0', N'3', N'2', N'600', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012015', N'Berber Shoes', N'1', N'0', N'0', N'1', N'2', N'46', N'4200', N'0', N'3', N'2', N'600', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012016', N'Brocade Shoes', N'1', N'0', N'0', N'1', N'2', N'49', N'4200', N'0', N'3', N'2', N'600', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012017', N'Doeskin Shoes', N'1', N'0', N'0', N'1', N'2', N'52', N'4200', N'0', N'3', N'2', N'600', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15012018', N'Nea Shoes', N'1', N'0', N'0', N'1', N'2', N'55', N'4200', N'0', N'3', N'2', N'600', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014001', N'Lavish Shoes', N'1', N'1', N'5', N'1', N'4', N'5', N'4400', N'1', N'3', N'2', N'600', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014002', N'Insidious Shoes', N'1', N'1', N'5', N'1', N'4', N'10', N'4400', N'1', N'3', N'2', N'600', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014003', N'Exceptional Shoes', N'1', N'1', N'5', N'1', N'4', N'15', N'4400', N'1', N'3', N'2', N'600', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014004', N'Fervid Shoes', N'1', N'1', N'5', N'1', N'4', N'20', N'4400', N'1', N'3', N'2', N'600', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014005', N'Nefarious Shoes', N'1', N'1', N'5', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014006', N'Diabolic Shoes', N'1', N'1', N'5', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014007', N'Sacred Shoes', N'1', N'1', N'5', N'1', N'4', N'35', N'4400', N'1', N'3', N'2', N'600', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014008', N'Devious Shoes', N'1', N'1', N'5', N'1', N'4', N'40', N'4400', N'1', N'3', N'2', N'600', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014009', N'Distinct Shoes', N'1', N'1', N'5', N'1', N'4', N'45', N'4400', N'1', N'3', N'2', N'600', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014010', N'Taffeta Shoes', N'1', N'1', N'5', N'1', N'4', N'50', N'4400', N'1', N'3', N'2', N'600', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15014011', N'Obscure Shoes', N'1', N'1', N'5', N'1', N'4', N'55', N'4400', N'1', N'3', N'2', N'600', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015001', N'Vital Shoes', N'1', N'1', N'3', N'1', N'5', N'10', N'4600', N'1', N'3', N'2', N'600', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015002', N'Wisdom Shoes', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015003', N'Bentus Shoes', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015004', N'Raschel Shoes', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015005', N'Calico Shoes', N'1', N'1', N'3', N'1', N'5', N'30', N'4600', N'1', N'3', N'2', N'600', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015006', N'Lumen Shoes', N'1', N'1', N'3', N'1', N'5', N'35', N'4600', N'1', N'3', N'2', N'600', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015007', N'Starlight Shoes', N'1', N'1', N'3', N'1', N'5', N'40', N'4600', N'1', N'3', N'2', N'600', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015008', N'Fluer Shoes', N'1', N'1', N'3', N'1', N'5', N'45', N'4600', N'1', N'3', N'2', N'600', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015009', N'Pincord Shoes', N'1', N'1', N'3', N'1', N'5', N'50', N'4600', N'1', N'3', N'2', N'600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15015010', N'Dusk Shoes', N'1', N'1', N'3', N'1', N'5', N'55', N'4600', N'1', N'3', N'2', N'600', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021001', N'Light Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'3', N'4000', N'0', N'0', N'2', N'800', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021002', N'Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'6', N'4000', N'0', N'0', N'2', N'800', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021003', N'Quilted Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'9', N'4000', N'0', N'0', N'2', N'800', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021004', N'Studded Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'12', N'4000', N'0', N'0', N'2', N'800', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021005', N'Hunter Shoes', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'800', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021006', N'Carp Shoes', N'1', N'0', N'0', N'2', N'1', N'18', N'4000', N'0', N'0', N'2', N'800', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021007', N'Suede Shoes', N'1', N'0', N'0', N'2', N'1', N'21', N'4000', N'0', N'0', N'2', N'800', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021008', N'Nubuck Shoes', N'1', N'0', N'0', N'2', N'1', N'24', N'4000', N'0', N'0', N'2', N'800', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021009', N'Slink Shoes', N'1', N'0', N'0', N'2', N'1', N'27', N'4000', N'0', N'0', N'2', N'800', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021010', N'Hide Shoes', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'800', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021011', N'Buckskin Shoes', N'1', N'0', N'0', N'2', N'1', N'33', N'4000', N'0', N'0', N'2', N'800', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021012', N'Shagreen Shoes', N'1', N'0', N'0', N'2', N'1', N'36', N'4000', N'0', N'0', N'2', N'800', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021013', N'Lamellar Shoes', N'1', N'0', N'0', N'2', N'1', N'39', N'4000', N'0', N'0', N'2', N'800', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021014', N'Brigandine Shoes', N'1', N'0', N'0', N'2', N'1', N'42', N'4000', N'0', N'0', N'2', N'800', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021015', N'Lorica Shoes', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'800', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021016', N'Swollen Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'48', N'4000', N'0', N'0', N'2', N'800', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021017', N'Sinful Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'51', N'4000', N'0', N'0', N'2', N'800', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15021018', N'DS Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'54', N'4000', N'0', N'0', N'2', N'800', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022001', N'Light Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'4', N'4200', N'0', N'3', N'2', N'800', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022002', N'Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'7', N'4200', N'0', N'3', N'2', N'800', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022003', N'Quilted Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'10', N'4200', N'0', N'3', N'2', N'800', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022004', N'Studded Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'13', N'4200', N'0', N'3', N'2', N'800', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022005', N'Hunter Shoes', N'1', N'0', N'0', N'2', N'2', N'16', N'4200', N'0', N'3', N'2', N'800', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022006', N'Carp Shoes', N'1', N'0', N'0', N'2', N'2', N'19', N'4200', N'0', N'3', N'2', N'800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022007', N'Suede Shoes', N'1', N'0', N'0', N'2', N'2', N'22', N'4200', N'0', N'3', N'2', N'800', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022008', N'Nubuck Shoes', N'1', N'0', N'0', N'2', N'2', N'25', N'4200', N'0', N'3', N'2', N'800', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022009', N'Slink Shoes', N'1', N'0', N'0', N'2', N'2', N'28', N'4200', N'0', N'3', N'2', N'800', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022010', N'Hide Shoes', N'1', N'0', N'0', N'2', N'2', N'31', N'4200', N'0', N'3', N'2', N'800', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022011', N'Buckskin Shoes', N'1', N'0', N'0', N'2', N'2', N'34', N'4200', N'0', N'3', N'2', N'800', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022012', N'Shagreen Shoes', N'1', N'0', N'0', N'2', N'2', N'37', N'4200', N'0', N'3', N'2', N'800', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022013', N'Lamellar Shoes', N'1', N'0', N'0', N'2', N'2', N'40', N'4200', N'0', N'3', N'2', N'800', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022014', N'Brigandine Shoes', N'1', N'0', N'0', N'2', N'2', N'43', N'4200', N'0', N'3', N'2', N'800', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022015', N'Lorica Shoes', N'1', N'0', N'0', N'2', N'2', N'46', N'4200', N'0', N'3', N'2', N'800', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022016', N'Swollen Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'49', N'4200', N'0', N'3', N'2', N'800', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022017', N'Sinful Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'52', N'4200', N'0', N'3', N'2', N'800', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15022018', N'DS Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'55', N'4200', N'0', N'3', N'2', N'800', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024001', N'Authentic Shoes', N'1', N'1', N'5', N'2', N'4', N'5', N'4400', N'1', N'3', N'2', N'800', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024002', N'Camouflage Shoes', N'1', N'1', N'5', N'2', N'4', N'10', N'4400', N'1', N'3', N'2', N'800', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024003', N'Illicit Shoes', N'1', N'1', N'5', N'2', N'4', N'15', N'4400', N'1', N'3', N'2', N'800', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024004', N'Rugged Shoes', N'1', N'1', N'5', N'2', N'4', N'20', N'4400', N'1', N'3', N'2', N'800', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024005', N'Dread Shoes', N'1', N'1', N'5', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'800', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024006', N'Tough Shoes', N'1', N'1', N'5', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'800', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024007', N'Haken-hide Shoes', N'1', N'1', N'5', N'2', N'4', N'35', N'4400', N'1', N'3', N'2', N'800', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024008', N'Combat Shoes', N'1', N'1', N'5', N'2', N'4', N'40', N'4400', N'1', N'3', N'2', N'800', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024009', N'Genuine Shoes', N'1', N'1', N'5', N'2', N'4', N'45', N'4400', N'1', N'3', N'2', N'800', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024010', N'Superior Shoes', N'1', N'1', N'5', N'2', N'4', N'50', N'4400', N'1', N'3', N'2', N'800', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15024011', N'Posh Leather Shoes', N'1', N'1', N'5', N'2', N'4', N'55', N'4400', N'1', N'3', N'2', N'800', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025001', N'Tanned Shoes', N'1', N'1', N'3', N'2', N'5', N'10', N'4600', N'1', N'3', N'2', N'800', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025002', N'Rawhide Shoes', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'800', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025003', N'Demonic Shoes', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025004', N'Praetorian Shoes', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025005', N'Lacrimal Shoes', N'1', N'1', N'3', N'2', N'5', N'30', N'4600', N'1', N'3', N'2', N'800', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025006', N'Eminent Shoes', N'1', N'1', N'3', N'2', N'5', N'35', N'4600', N'1', N'3', N'2', N'800', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025007', N'Aquarius Shoes', N'1', N'1', N'3', N'2', N'5', N'40', N'4600', N'1', N'3', N'2', N'800', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025008', N'Rogue Shoes', N'1', N'1', N'3', N'2', N'5', N'45', N'4600', N'1', N'3', N'2', N'800', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025009', N'Fianna Shoes', N'1', N'1', N'3', N'2', N'5', N'50', N'4600', N'1', N'3', N'2', N'800', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15025010', N'Arcane Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'55', N'4600', N'1', N'3', N'2', N'800', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031001', N'Tatter Boots', N'1', N'0', N'0', N'3', N'1', N'3', N'4000', N'0', N'0', N'2', N'1200', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031002', N'Chain Boots', N'1', N'0', N'0', N'3', N'1', N'6', N'4000', N'0', N'0', N'2', N'1200', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031003', N'Wire Boots', N'1', N'0', N'0', N'3', N'1', N'9', N'4000', N'0', N'0', N'2', N'1200', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031004', N'Hunter Boots', N'1', N'0', N'0', N'3', N'1', N'12', N'4000', N'0', N'0', N'2', N'1200', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031005', N'Battle Boots', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'1200', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031006', N'Devout Boots', N'1', N'0', N'0', N'3', N'1', N'18', N'4000', N'0', N'0', N'2', N'1200', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031007', N'Banded Boots', N'1', N'0', N'0', N'3', N'1', N'21', N'4000', N'0', N'0', N'2', N'1200', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031008', N'Linked Boots', N'1', N'0', N'0', N'3', N'1', N'24', N'4000', N'0', N'0', N'2', N'1200', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031009', N'Splinted Boots', N'1', N'0', N'0', N'3', N'1', N'27', N'4000', N'0', N'0', N'2', N'1200', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031010', N'Rivet Boots', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'1200', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031011', N'Venetian Boots', N'1', N'0', N'0', N'3', N'1', N'33', N'4000', N'0', N'0', N'2', N'1200', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031012', N'Arquebus Boots', N'1', N'0', N'0', N'3', N'1', N'36', N'4000', N'0', N'0', N'2', N'1200', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031013', N'Acorn Boots', N'1', N'0', N'0', N'3', N'1', N'39', N'4000', N'0', N'0', N'2', N'1200', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031014', N'Aventail Boots', N'1', N'0', N'0', N'3', N'1', N'42', N'4000', N'0', N'0', N'2', N'1200', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031015', N'Janissary Boots', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'1200', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031016', N'Genovese Boots', N'1', N'0', N'0', N'3', N'1', N'48', N'4000', N'0', N'0', N'2', N'1200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031017', N'Teutonic Boots', N'1', N'0', N'0', N'3', N'1', N'51', N'4000', N'0', N'0', N'2', N'1200', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15031018', N'Natura Chain Boots', N'1', N'0', N'0', N'3', N'1', N'54', N'4000', N'0', N'0', N'2', N'1200', N'9540', N'1574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032001', N'Tatter Boots', N'1', N'0', N'0', N'3', N'2', N'4', N'4200', N'0', N'3', N'2', N'1200', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032002', N'Chain Boots', N'1', N'0', N'0', N'3', N'2', N'7', N'4200', N'0', N'3', N'2', N'1200', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032003', N'Wire Boots', N'1', N'0', N'0', N'3', N'2', N'10', N'4200', N'0', N'3', N'2', N'1200', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032004', N'Hunter Boots', N'1', N'0', N'0', N'3', N'2', N'13', N'4200', N'0', N'3', N'2', N'1200', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032005', N'Battle Boots', N'1', N'0', N'0', N'3', N'2', N'16', N'4200', N'0', N'3', N'2', N'1200', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032006', N'Devout Boots', N'1', N'0', N'0', N'3', N'2', N'19', N'4200', N'0', N'3', N'2', N'1200', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032007', N'Banded Boots', N'1', N'0', N'0', N'3', N'2', N'22', N'4200', N'0', N'3', N'2', N'1200', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032008', N'Linked Boots', N'1', N'0', N'0', N'3', N'2', N'25', N'4200', N'0', N'3', N'2', N'1200', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032009', N'Splinted Boots', N'1', N'0', N'0', N'3', N'2', N'28', N'4200', N'0', N'3', N'2', N'1200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032010', N'Rivet Boots', N'1', N'0', N'0', N'3', N'2', N'31', N'4200', N'0', N'3', N'2', N'1200', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032011', N'Venetian Boots', N'1', N'0', N'0', N'3', N'2', N'34', N'4200', N'0', N'3', N'2', N'1200', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032012', N'Arquebus Boots', N'1', N'0', N'0', N'3', N'2', N'37', N'4200', N'0', N'3', N'2', N'1200', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032013', N'Acorn Boots', N'1', N'0', N'0', N'3', N'2', N'40', N'4200', N'0', N'3', N'2', N'1200', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032014', N'Aventail Boots', N'1', N'0', N'0', N'3', N'2', N'43', N'4200', N'0', N'3', N'2', N'1200', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032015', N'Janissary Boots', N'1', N'0', N'0', N'3', N'2', N'46', N'4200', N'0', N'3', N'2', N'1200', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032016', N'Genovese Boots', N'1', N'0', N'0', N'3', N'2', N'49', N'4200', N'0', N'3', N'2', N'1200', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032017', N'Teutonic Boots', N'1', N'0', N'0', N'3', N'2', N'52', N'4200', N'0', N'3', N'2', N'1200', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15032018', N'Natura Chain Boots', N'1', N'0', N'0', N'3', N'2', N'55', N'4200', N'0', N'3', N'2', N'1200', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034001', N'Gritty Boots', N'1', N'1', N'5', N'3', N'4', N'5', N'4400', N'1', N'3', N'2', N'1200', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034002', N'Heavy Boots', N'1', N'1', N'5', N'3', N'4', N'10', N'4400', N'1', N'3', N'2', N'1200', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034003', N'Ultimate Boots', N'1', N'1', N'5', N'3', N'4', N'15', N'4400', N'1', N'3', N'2', N'1200', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034004', N'Brisk Boots', N'1', N'1', N'5', N'3', N'4', N'20', N'4400', N'1', N'3', N'2', N'1200', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034005', N'Bound Boots', N'1', N'1', N'5', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'1200', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034006', N'Secure Boots', N'1', N'1', N'5', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'1200', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034007', N'Devout Boots', N'1', N'1', N'5', N'3', N'4', N'35', N'4400', N'1', N'3', N'2', N'1200', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034008', N'Solid Boots', N'1', N'1', N'5', N'3', N'4', N'40', N'4400', N'1', N'3', N'2', N'1200', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034009', N'Discarded Boots', N'1', N'1', N'5', N'3', N'4', N'45', N'4400', N'1', N'3', N'2', N'1200', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034010', N'Engraved Boots', N'1', N'1', N'5', N'3', N'4', N'50', N'4400', N'1', N'3', N'2', N'1200', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15034011', N'Cure Chain Boots', N'1', N'1', N'5', N'3', N'4', N'55', N'4400', N'1', N'3', N'2', N'1200', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035001', N'Dense Boots', N'1', N'1', N'3', N'3', N'5', N'10', N'4600', N'1', N'3', N'2', N'1200', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035002', N'Burnished Boots', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'1200', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035003', N'Ribbed Boots', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'1200', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035004', N'Arcane Boots', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035005', N'Ashen Boots', N'1', N'1', N'3', N'3', N'5', N'30', N'4600', N'1', N'3', N'2', N'1200', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035006', N'Placidus Boots', N'1', N'1', N'3', N'3', N'5', N'35', N'4600', N'1', N'3', N'2', N'1200', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035007', N'Armadillo Boots', N'1', N'1', N'3', N'3', N'5', N'40', N'4600', N'1', N'3', N'2', N'1200', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035008', N'Bulwark Boots', N'1', N'1', N'3', N'3', N'5', N'45', N'4600', N'1', N'3', N'2', N'1200', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035009', N'Cardiff Boots', N'1', N'1', N'3', N'3', N'5', N'50', N'4600', N'1', N'3', N'2', N'1200', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15035010', N'Armed Chain Boots', N'1', N'1', N'3', N'3', N'5', N'55', N'4600', N'1', N'3', N'2', N'1200', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041001', N'Prelic War Boots', N'1', N'0', N'0', N'4', N'1', N'3', N'4000', N'0', N'0', N'2', N'2300', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041002', N'Padded War Boots', N'1', N'0', N'0', N'4', N'1', N'6', N'4000', N'0', N'0', N'2', N'2300', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041003', N'Hauberk War Boots', N'1', N'0', N'0', N'4', N'1', N'9', N'4000', N'0', N'0', N'2', N'2300', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041004', N'Scale War Boots', N'1', N'0', N'0', N'4', N'1', N'12', N'4000', N'0', N'0', N'2', N'2300', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041005', N'Steel War Boots', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'2300', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041006', N'Spiral War Boots', N'1', N'0', N'0', N'4', N'1', N'18', N'4000', N'0', N'0', N'2', N'2300', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041007', N'Hoplite Boots', N'1', N'0', N'0', N'4', N'1', N'21', N'4000', N'0', N'0', N'2', N'2300', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041008', N'Full War Boots', N'1', N'0', N'0', N'4', N'1', N'24', N'4000', N'0', N'0', N'2', N'2300', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041009', N'Ornate War Boots', N'1', N'0', N'0', N'4', N'1', N'27', N'4000', N'0', N'0', N'2', N'2300', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041010', N'Rune War Boots', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'2300', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041011', N'Raven War Boots', N'1', N'0', N'0', N'4', N'1', N'33', N'4000', N'0', N'0', N'2', N'2300', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041012', N'Castilian Boots', N'1', N'0', N'0', N'4', N'1', N'36', N'4000', N'0', N'0', N'2', N'2300', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041013', N'Baleog War Boots', N'1', N'0', N'0', N'4', N'1', N'39', N'4000', N'0', N'0', N'2', N'2300', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041014', N'Drake War Boots', N'1', N'0', N'0', N'4', N'1', N'42', N'4000', N'0', N'0', N'2', N'2300', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041015', N'Crisis War Boots', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'2300', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041016', N'Travirun War Boots', N'1', N'0', N'0', N'4', N'1', N'48', N'4000', N'0', N'0', N'2', N'2300', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041017', N'Dragoon Boots', N'1', N'0', N'0', N'4', N'1', N'51', N'4000', N'0', N'0', N'2', N'2300', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15041018', N'Repel War Boots', N'1', N'0', N'0', N'4', N'1', N'54', N'4000', N'0', N'0', N'2', N'2300', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042001', N'Prelic War Boots', N'1', N'0', N'0', N'4', N'2', N'4', N'4200', N'0', N'3', N'2', N'2300', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042002', N'Padded War Boots', N'1', N'0', N'0', N'4', N'2', N'7', N'4200', N'0', N'3', N'2', N'2300', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042003', N'Hauberk War Boots', N'1', N'0', N'0', N'4', N'2', N'10', N'4200', N'0', N'3', N'2', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042004', N'Scale War Boots', N'1', N'0', N'0', N'4', N'2', N'13', N'4200', N'0', N'3', N'2', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042005', N'Steel War Boots', N'1', N'0', N'0', N'4', N'2', N'16', N'4200', N'0', N'3', N'2', N'2300', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042006', N'Spiral War Boots', N'1', N'0', N'0', N'4', N'2', N'19', N'4200', N'0', N'3', N'2', N'2300', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042007', N'Hoplite Boots', N'1', N'0', N'0', N'4', N'2', N'22', N'4200', N'0', N'3', N'2', N'2300', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042008', N'Full War Boots', N'1', N'0', N'0', N'4', N'2', N'25', N'4200', N'0', N'3', N'2', N'2300', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042009', N'Ornate War Boots', N'1', N'0', N'0', N'4', N'2', N'28', N'4200', N'0', N'3', N'2', N'2300', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042010', N'Rune War Boots', N'1', N'0', N'0', N'4', N'2', N'31', N'4200', N'0', N'3', N'2', N'2300', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042011', N'Raven War Boots', N'1', N'0', N'0', N'4', N'2', N'34', N'4200', N'0', N'3', N'2', N'2300', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042012', N'Castilian Boots', N'1', N'0', N'0', N'4', N'2', N'37', N'4200', N'0', N'3', N'2', N'2300', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042013', N'Baleog War Boots', N'1', N'0', N'0', N'4', N'2', N'40', N'4200', N'0', N'3', N'2', N'2300', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042014', N'Drake War Boots', N'1', N'0', N'0', N'4', N'2', N'43', N'4200', N'0', N'3', N'2', N'2300', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042015', N'Crisis War Boots', N'1', N'0', N'0', N'4', N'2', N'46', N'4200', N'0', N'3', N'2', N'2300', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042016', N'Travirun War Boots', N'1', N'0', N'0', N'4', N'2', N'49', N'4200', N'0', N'3', N'2', N'2300', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042017', N'Dragoon Boots', N'1', N'0', N'0', N'4', N'2', N'52', N'4200', N'0', N'3', N'2', N'2300', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15042018', N'Repel War Boots', N'1', N'0', N'0', N'4', N'2', N'55', N'4200', N'0', N'3', N'2', N'2300', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044001', N'Shining Boots', N'1', N'1', N'5', N'4', N'4', N'5', N'4400', N'1', N'3', N'2', N'2300', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044002', N'Dazzling Boots', N'1', N'1', N'5', N'4', N'4', N'10', N'4400', N'1', N'3', N'2', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044003', N'Assault War Boots', N'1', N'1', N'5', N'4', N'4', N'15', N'4400', N'1', N'3', N'2', N'2300', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044004', N'Gendarme Boots', N'1', N'1', N'5', N'4', N'4', N'20', N'4400', N'1', N'3', N'2', N'2300', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044005', N'Enduring War Boots', N'1', N'1', N'5', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'2300', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044006', N'Jousting Boots', N'1', N'1', N'5', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'2300', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044007', N'Stark Boots', N'1', N'1', N'5', N'4', N'4', N'35', N'4400', N'1', N'3', N'2', N'2300', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044008', N'Menacing Boots', N'1', N'1', N'5', N'4', N'4', N'40', N'4400', N'1', N'3', N'2', N'2300', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044009', N'Hazardous War Boots', N'1', N'1', N'5', N'4', N'4', N'45', N'4400', N'1', N'3', N'2', N'2300', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044010', N'Expert Boots', N'1', N'1', N'5', N'4', N'4', N'50', N'4400', N'1', N'3', N'2', N'2300', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15044011', N'Suspicious War Boots', N'1', N'1', N'5', N'4', N'4', N'55', N'4400', N'1', N'3', N'2', N'2300', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045001', N'Doomed Boots', N'1', N'1', N'3', N'4', N'5', N'10', N'4600', N'1', N'3', N'2', N'2300', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045002', N'Essential War Boots', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'2300', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045003', N'Blazing Boots', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'2300', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045004', N'Infernal War Boots', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'2300', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045005', N'Field Marshal Boots', N'1', N'1', N'3', N'4', N'5', N'30', N'4600', N'1', N'3', N'2', N'2300', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045006', N'Destined Boots', N'1', N'1', N'3', N'4', N'5', N'35', N'4600', N'1', N'3', N'2', N'2300', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045007', N'Knightly Boots', N'1', N'1', N'3', N'4', N'5', N'40', N'4600', N'1', N'3', N'2', N'2300', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045008', N'Fergana War Boots', N'1', N'1', N'3', N'4', N'5', N'45', N'4600', N'1', N'3', N'2', N'2300', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045009', N'Avernus Boots', N'1', N'1', N'3', N'4', N'5', N'50', N'4600', N'1', N'3', N'2', N'2300', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'15045010', N'Flame War Boots', N'1', N'1', N'3', N'4', N'5', N'55', N'4600', N'1', N'3', N'2', N'2300', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011001', N'Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'2', N'3000', N'0', N'0', N'2', N'200', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011002', N'Linen Belt', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'200', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011003', N'Fleece Belt', N'1', N'0', N'0', N'1', N'1', N'8', N'3000', N'0', N'0', N'2', N'200', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011004', N'Silky Yarn Belt', N'1', N'0', N'0', N'1', N'1', N'11', N'3000', N'0', N'0', N'2', N'200', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011005', N'Wool Belt', N'1', N'0', N'0', N'1', N'1', N'14', N'3000', N'0', N'0', N'2', N'200', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011006', N'Silk Belt', N'1', N'0', N'0', N'1', N'1', N'17', N'3000', N'0', N'0', N'2', N'200', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011007', N'Ram''s Wool Belt', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'200', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011008', N'Muslin Belt', N'1', N'0', N'0', N'1', N'1', N'23', N'3000', N'0', N'0', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011009', N'Luna Belt', N'1', N'0', N'0', N'1', N'1', N'26', N'3000', N'0', N'0', N'2', N'200', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011010', N'Celestial Belt', N'1', N'0', N'0', N'1', N'1', N'29', N'3000', N'0', N'0', N'2', N'200', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011011', N'Mystical Belt', N'1', N'0', N'0', N'1', N'1', N'32', N'3000', N'0', N'0', N'2', N'200', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011012', N'Sorceress Belt', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'200', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011013', N'Angora Belt', N'1', N'0', N'0', N'1', N'1', N'38', N'3000', N'0', N'0', N'2', N'200', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011014', N'Aramid Belt', N'1', N'0', N'0', N'1', N'1', N'41', N'3000', N'0', N'0', N'2', N'200', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011015', N'Berber Belt', N'1', N'0', N'0', N'1', N'1', N'44', N'3000', N'0', N'0', N'2', N'200', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011016', N'Brocade Belt', N'1', N'0', N'0', N'1', N'1', N'47', N'3000', N'0', N'0', N'2', N'200', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011017', N'Doeskin Belt', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'200', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16011018', N'Nea Belt', N'1', N'0', N'0', N'1', N'1', N'53', N'3000', N'0', N'0', N'2', N'200', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012001', N'Fabric Belt', N'1', N'0', N'0', N'1', N'2', N'3', N'3200', N'0', N'3', N'2', N'200', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012002', N'Linen Belt', N'1', N'0', N'0', N'1', N'2', N'6', N'3200', N'0', N'3', N'2', N'200', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012003', N'Fleece Belt', N'1', N'0', N'0', N'1', N'2', N'9', N'3200', N'0', N'3', N'2', N'200', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012004', N'Silky Yarn Belt', N'1', N'0', N'0', N'1', N'2', N'12', N'3200', N'0', N'3', N'2', N'200', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012005', N'Wool Belt', N'1', N'0', N'0', N'1', N'2', N'15', N'3200', N'0', N'3', N'2', N'200', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012006', N'Silk Belt', N'1', N'0', N'0', N'1', N'2', N'18', N'3200', N'0', N'3', N'2', N'200', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012007', N'Ram''s Wool Belt', N'1', N'0', N'0', N'1', N'2', N'21', N'3200', N'0', N'3', N'2', N'200', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012008', N'Muslin Belt', N'1', N'0', N'0', N'1', N'2', N'24', N'3200', N'0', N'3', N'2', N'200', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012009', N'Luna Belt', N'1', N'0', N'0', N'1', N'2', N'27', N'3200', N'0', N'3', N'2', N'200', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012010', N'Celestial Belt', N'1', N'0', N'0', N'1', N'2', N'30', N'3200', N'0', N'3', N'2', N'200', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012011', N'Mystical Belt', N'1', N'0', N'0', N'1', N'2', N'33', N'3200', N'0', N'3', N'2', N'200', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012012', N'Sorceress Belt', N'1', N'0', N'0', N'1', N'2', N'36', N'3200', N'0', N'3', N'2', N'200', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012013', N'Angora Belt', N'1', N'0', N'0', N'1', N'2', N'39', N'3200', N'0', N'3', N'2', N'200', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012014', N'Aramid Belt', N'1', N'0', N'0', N'1', N'2', N'42', N'3200', N'0', N'3', N'2', N'200', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012015', N'Berber Belt', N'1', N'0', N'0', N'1', N'2', N'45', N'3200', N'0', N'3', N'2', N'200', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012016', N'Brocade Belt', N'1', N'0', N'0', N'1', N'2', N'48', N'3200', N'0', N'3', N'2', N'200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012017', N'Doeskin Belt', N'1', N'0', N'0', N'1', N'2', N'51', N'3200', N'0', N'3', N'2', N'200', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16012018', N'Nea Belt', N'1', N'0', N'0', N'1', N'2', N'54', N'3200', N'0', N'3', N'2', N'200', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014001', N'Lavish Belt', N'1', N'1', N'5', N'1', N'4', N'5', N'3400', N'1', N'3', N'2', N'200', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014002', N'Insidious Belt', N'1', N'1', N'5', N'1', N'4', N'10', N'3400', N'1', N'3', N'2', N'200', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014003', N'Exceptional Belt', N'1', N'1', N'5', N'1', N'4', N'15', N'3400', N'1', N'3', N'2', N'200', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014004', N'Fervid Belt', N'1', N'1', N'5', N'1', N'4', N'20', N'3400', N'1', N'3', N'2', N'200', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014005', N'Nefarious Belt', N'1', N'1', N'5', N'1', N'4', N'25', N'3400', N'1', N'3', N'2', N'200', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014006', N'Diabolic Belt', N'1', N'1', N'5', N'1', N'4', N'30', N'3400', N'1', N'3', N'2', N'200', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014007', N'Sacred Belt', N'1', N'1', N'5', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'200', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014008', N'Devious Belt', N'1', N'1', N'5', N'1', N'4', N'40', N'3400', N'1', N'3', N'2', N'200', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014009', N'Distinct Belt', N'1', N'1', N'5', N'1', N'4', N'45', N'3400', N'1', N'3', N'2', N'200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014010', N'Taffeta Belt', N'1', N'1', N'5', N'1', N'4', N'50', N'3400', N'1', N'3', N'2', N'200', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16014011', N'Obscure Belt', N'1', N'1', N'5', N'1', N'4', N'55', N'3400', N'1', N'3', N'2', N'200', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015001', N'Vital Belt', N'1', N'1', N'3', N'1', N'5', N'10', N'3600', N'1', N'3', N'2', N'200', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015002', N'Wisdom Belt', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'200', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015003', N'Bentus Belt', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015004', N'Raschel Belt', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'200', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015005', N'Calico Belt', N'1', N'1', N'3', N'1', N'5', N'30', N'3600', N'1', N'3', N'2', N'200', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015006', N'Lumen Belt', N'1', N'1', N'3', N'1', N'5', N'35', N'3600', N'1', N'3', N'2', N'200', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015007', N'Starlight Belt', N'1', N'1', N'3', N'1', N'5', N'40', N'3600', N'1', N'3', N'2', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015008', N'Fluer Belt', N'1', N'1', N'3', N'1', N'5', N'45', N'3600', N'1', N'3', N'2', N'200', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015009', N'Pincord Belt', N'1', N'1', N'3', N'1', N'5', N'50', N'3600', N'1', N'3', N'2', N'200', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16015010', N'Dusk Belt', N'1', N'1', N'3', N'1', N'5', N'55', N'3600', N'1', N'3', N'2', N'200', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021001', N'Light Leather Belt', N'1', N'0', N'0', N'2', N'1', N'2', N'3000', N'0', N'0', N'2', N'300', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021002', N'Leather Belt', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'300', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021003', N'Quilted Leather Belt', N'1', N'0', N'0', N'2', N'1', N'8', N'3000', N'0', N'0', N'2', N'300', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021004', N'Studded Leather Belt', N'1', N'0', N'0', N'2', N'1', N'11', N'3000', N'0', N'0', N'2', N'300', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021005', N'Heavy Leather Belt', N'1', N'0', N'0', N'2', N'1', N'14', N'3000', N'0', N'0', N'2', N'300', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021006', N'Carp Belt', N'1', N'0', N'0', N'2', N'1', N'17', N'3000', N'0', N'0', N'2', N'300', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021007', N'Suede Belt', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'300', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021008', N'Nubuck Belt', N'1', N'0', N'0', N'2', N'1', N'23', N'3000', N'0', N'0', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021009', N'Slink Belt', N'1', N'0', N'0', N'2', N'1', N'26', N'3000', N'0', N'0', N'2', N'300', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021010', N'Hide Belt', N'1', N'0', N'0', N'2', N'1', N'29', N'3000', N'0', N'0', N'2', N'300', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021011', N'Buckskin Belt', N'1', N'0', N'0', N'2', N'1', N'32', N'3000', N'0', N'0', N'2', N'300', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021012', N'Shagreen Belt', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'300', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021013', N'Lamellar Belt', N'1', N'0', N'0', N'2', N'1', N'38', N'3000', N'0', N'0', N'2', N'300', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021014', N'Brigandine Belt', N'1', N'0', N'0', N'2', N'1', N'41', N'3000', N'0', N'0', N'2', N'300', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021015', N'Lorica Belt', N'1', N'0', N'0', N'2', N'1', N'44', N'3000', N'0', N'0', N'2', N'300', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021016', N'Swollen Leather Belt', N'1', N'0', N'0', N'2', N'1', N'47', N'3000', N'0', N'0', N'2', N'300', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021017', N'Sinful Leather Belt', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'300', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16021018', N'DS Leather Belt', N'1', N'0', N'0', N'2', N'1', N'53', N'3000', N'0', N'0', N'2', N'300', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022001', N'Light Leather Belt', N'1', N'0', N'0', N'2', N'2', N'3', N'3200', N'0', N'3', N'2', N'300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022002', N'Leather Belt', N'1', N'0', N'0', N'2', N'2', N'6', N'3200', N'0', N'3', N'2', N'300', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022003', N'Quilted Leather Belt', N'1', N'0', N'0', N'2', N'2', N'9', N'3200', N'0', N'3', N'2', N'300', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022004', N'Studded Leather Belt', N'1', N'0', N'0', N'2', N'2', N'12', N'3200', N'0', N'3', N'2', N'300', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022005', N'Heavy Leather Belt', N'1', N'0', N'0', N'2', N'2', N'15', N'3200', N'0', N'3', N'2', N'300', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022006', N'Carp Belt', N'1', N'0', N'0', N'2', N'2', N'18', N'3200', N'0', N'3', N'2', N'300', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022007', N'Suede Belt', N'1', N'0', N'0', N'2', N'2', N'21', N'3200', N'0', N'3', N'2', N'300', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022008', N'Nubuck Belt', N'1', N'0', N'0', N'2', N'2', N'24', N'3200', N'0', N'3', N'2', N'300', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022009', N'Slink Belt', N'1', N'0', N'0', N'2', N'2', N'27', N'3200', N'0', N'3', N'2', N'300', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022010', N'Hide Belt', N'1', N'0', N'0', N'2', N'2', N'30', N'3200', N'0', N'3', N'2', N'300', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022011', N'Buckskin Belt', N'1', N'0', N'0', N'2', N'2', N'33', N'3200', N'0', N'3', N'2', N'300', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022012', N'Shagreen Belt', N'1', N'0', N'0', N'2', N'2', N'36', N'3200', N'0', N'3', N'2', N'300', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022013', N'Lamellar Belt', N'1', N'0', N'0', N'2', N'2', N'39', N'3200', N'0', N'3', N'2', N'300', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022014', N'Brigandine Belt', N'1', N'0', N'0', N'2', N'2', N'42', N'3200', N'0', N'3', N'2', N'300', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022015', N'Lorica Belt', N'1', N'0', N'0', N'2', N'2', N'45', N'3200', N'0', N'3', N'2', N'300', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022016', N'Swollen Leather Belt', N'1', N'0', N'0', N'2', N'2', N'48', N'3200', N'0', N'3', N'2', N'300', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022017', N'Sinful Leather Belt', N'1', N'0', N'0', N'2', N'2', N'51', N'3200', N'0', N'3', N'2', N'300', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16022018', N'DS Leather Belt', N'1', N'0', N'0', N'2', N'2', N'54', N'3200', N'0', N'3', N'2', N'300', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024001', N'Authentic Leather Belt', N'1', N'1', N'5', N'2', N'4', N'5', N'3400', N'1', N'3', N'2', N'300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024002', N'Camouflage Leather Belt', N'1', N'1', N'5', N'2', N'4', N'10', N'3400', N'1', N'3', N'2', N'300', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024003', N'Illicit Leather Belt', N'1', N'1', N'5', N'2', N'4', N'15', N'3400', N'1', N'3', N'2', N'300', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024004', N'Rugged Leather Belt', N'1', N'1', N'5', N'2', N'4', N'20', N'3400', N'1', N'3', N'2', N'300', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024005', N'Dread Leather Belt', N'1', N'1', N'5', N'2', N'4', N'25', N'3400', N'1', N'3', N'2', N'300', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024006', N'Tough Leather Belt', N'1', N'1', N'5', N'2', N'4', N'30', N'3400', N'1', N'3', N'2', N'300', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024007', N'Haken-hide Leather Belt', N'1', N'1', N'5', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'300', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024008', N'Combat Leather Belt', N'1', N'1', N'5', N'2', N'4', N'40', N'3400', N'1', N'3', N'2', N'300', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024009', N'Genuine Leather Belt', N'1', N'1', N'5', N'2', N'4', N'45', N'3400', N'1', N'3', N'2', N'300', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024010', N'Superior Leather Belt', N'1', N'1', N'5', N'2', N'4', N'50', N'3400', N'1', N'3', N'2', N'300', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16024011', N'Posh Leather Belt', N'1', N'1', N'5', N'2', N'4', N'55', N'3400', N'1', N'3', N'2', N'300', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025001', N'Tanned Belt', N'1', N'1', N'3', N'2', N'5', N'10', N'3600', N'1', N'3', N'2', N'300', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025002', N'Rawhide Belt', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'300', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025003', N'Demonic Leather Belt', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025004', N'Praetorian Belt', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'300', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025005', N'Lacrimal Belt', N'1', N'1', N'3', N'2', N'5', N'30', N'3600', N'1', N'3', N'2', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025006', N'Eminent Leather Belt', N'1', N'1', N'3', N'2', N'5', N'35', N'3600', N'1', N'3', N'2', N'300', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025007', N'Aquarius Belt', N'1', N'1', N'3', N'2', N'5', N'40', N'3600', N'1', N'3', N'2', N'300', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025008', N'Rogue Belt', N'1', N'1', N'3', N'2', N'5', N'45', N'3600', N'1', N'3', N'2', N'300', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025009', N'Fianna Belt', N'1', N'1', N'3', N'2', N'5', N'50', N'3600', N'1', N'3', N'2', N'300', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16025010', N'Arcane Leather Belt', N'1', N'1', N'3', N'2', N'5', N'55', N'3600', N'1', N'3', N'2', N'300', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031001', N'Ringed Belt', N'1', N'0', N'0', N'3', N'1', N'2', N'3000', N'0', N'0', N'2', N'500', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031002', N'Chain Belt', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'500', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031003', N'Wire Belt', N'1', N'0', N'0', N'3', N'1', N'8', N'3000', N'0', N'0', N'2', N'500', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031004', N'Hunter Belt', N'1', N'0', N'0', N'3', N'1', N'11', N'3000', N'0', N'0', N'2', N'500', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031005', N'Battle Belt', N'1', N'0', N'0', N'3', N'1', N'14', N'3000', N'0', N'0', N'2', N'500', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031006', N'Devout Belt', N'1', N'0', N'0', N'3', N'1', N'17', N'3000', N'0', N'0', N'2', N'500', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031007', N'Banded Belt', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'500', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031008', N'Linked Belt', N'1', N'0', N'0', N'3', N'1', N'23', N'3000', N'0', N'0', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031009', N'Splinted Belt', N'1', N'0', N'0', N'3', N'1', N'26', N'3000', N'0', N'0', N'2', N'500', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031010', N'Rivet Belt', N'1', N'0', N'0', N'3', N'1', N'29', N'3000', N'0', N'0', N'2', N'500', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031011', N'Venetian Belt', N'1', N'0', N'0', N'3', N'1', N'32', N'3000', N'0', N'0', N'2', N'500', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031012', N'Arquebus Belt', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'500', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031013', N'Acorn Belt', N'1', N'0', N'0', N'3', N'1', N'38', N'3000', N'0', N'0', N'2', N'500', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031014', N'Aventail Belt', N'1', N'0', N'0', N'3', N'1', N'41', N'3000', N'0', N'0', N'2', N'500', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031015', N'Janissary Belt', N'1', N'0', N'0', N'3', N'1', N'44', N'3000', N'0', N'0', N'2', N'500', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031016', N'Genovese Belt', N'1', N'0', N'0', N'3', N'1', N'47', N'3000', N'0', N'0', N'2', N'500', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031017', N'Teutonic Belt', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'500', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16031018', N'Natura Chain Belt', N'1', N'0', N'0', N'3', N'1', N'53', N'3000', N'0', N'0', N'2', N'500', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032001', N'Ringed Belt', N'1', N'0', N'0', N'3', N'2', N'3', N'3200', N'0', N'3', N'2', N'500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032002', N'Chain Belt', N'1', N'0', N'0', N'3', N'2', N'6', N'3200', N'0', N'3', N'2', N'500', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032003', N'Wire Belt', N'1', N'0', N'0', N'3', N'2', N'9', N'3200', N'0', N'3', N'2', N'500', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032004', N'Hunter Belt', N'1', N'0', N'0', N'3', N'2', N'12', N'3200', N'0', N'3', N'2', N'500', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032005', N'Battle Belt', N'1', N'0', N'0', N'3', N'2', N'15', N'3200', N'0', N'3', N'2', N'500', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032006', N'Devout Belt', N'1', N'0', N'0', N'3', N'2', N'18', N'3200', N'0', N'3', N'2', N'500', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032007', N'Banded Belt', N'1', N'0', N'0', N'3', N'2', N'21', N'3200', N'0', N'3', N'2', N'500', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032008', N'Linked Belt', N'1', N'0', N'0', N'3', N'2', N'24', N'3200', N'0', N'3', N'2', N'500', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032009', N'Splinted Belt', N'1', N'0', N'0', N'3', N'2', N'27', N'3200', N'0', N'3', N'2', N'500', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032010', N'Rivet Belt', N'1', N'0', N'0', N'3', N'2', N'30', N'3200', N'0', N'3', N'2', N'500', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032011', N'Venetian Belt', N'1', N'0', N'0', N'3', N'2', N'33', N'3200', N'0', N'3', N'2', N'500', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032012', N'Arquebus Belt', N'1', N'0', N'0', N'3', N'2', N'36', N'3200', N'0', N'3', N'2', N'500', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032013', N'Acorn Belt', N'1', N'0', N'0', N'3', N'2', N'39', N'3200', N'0', N'3', N'2', N'500', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032014', N'Aventail Belt', N'1', N'0', N'0', N'3', N'2', N'42', N'3200', N'0', N'3', N'2', N'500', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032015', N'Janissary Belt', N'1', N'0', N'0', N'3', N'2', N'45', N'3200', N'0', N'3', N'2', N'500', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032016', N'Genovese Belt', N'1', N'0', N'0', N'3', N'2', N'48', N'3200', N'0', N'3', N'2', N'500', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032017', N'Teutonic Belt', N'1', N'0', N'0', N'3', N'2', N'51', N'3200', N'0', N'3', N'2', N'500', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16032018', N'Natura Chain Belt', N'1', N'0', N'0', N'3', N'2', N'54', N'3200', N'0', N'3', N'2', N'500', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034001', N'Gritty Belt', N'1', N'1', N'5', N'3', N'4', N'5', N'3400', N'1', N'3', N'2', N'500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034002', N'Heavy Chain Belt', N'1', N'1', N'5', N'3', N'4', N'10', N'3400', N'1', N'3', N'2', N'500', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034003', N'Ultimate Chain Belt', N'1', N'1', N'5', N'3', N'4', N'15', N'3400', N'1', N'3', N'2', N'500', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034004', N'Brisk Chain Belt', N'1', N'1', N'5', N'3', N'4', N'20', N'3400', N'1', N'3', N'2', N'500', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034005', N'Bound Belt', N'1', N'1', N'5', N'3', N'4', N'25', N'3400', N'1', N'3', N'2', N'500', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034006', N'Secure Chain Belt', N'1', N'1', N'5', N'3', N'4', N'30', N'3400', N'1', N'3', N'2', N'500', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034007', N'Devout Chain Belt', N'1', N'1', N'5', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'500', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034008', N'Solid Chain Belt', N'1', N'1', N'5', N'3', N'4', N'40', N'3400', N'1', N'3', N'2', N'500', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034009', N'Discarded Belt', N'1', N'1', N'5', N'3', N'4', N'45', N'3400', N'1', N'3', N'2', N'500', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034010', N'Engraved Chain Belt', N'1', N'1', N'5', N'3', N'4', N'50', N'3400', N'1', N'3', N'2', N'500', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16034011', N'Cure Chain Belt', N'1', N'1', N'5', N'3', N'4', N'55', N'3400', N'1', N'3', N'2', N'500', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035001', N'Dense Chain Belt', N'1', N'1', N'3', N'3', N'5', N'10', N'3600', N'1', N'3', N'2', N'500', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035002', N'Burnished Belt', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'500', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035003', N'Ribbed Belt', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035004', N'Arcane Chain Belt', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'500', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035005', N'Ashen Chain Belt', N'1', N'1', N'3', N'3', N'5', N'30', N'3600', N'1', N'3', N'2', N'500', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035006', N'Placidus Chain Belt', N'1', N'1', N'3', N'3', N'5', N'35', N'3600', N'1', N'3', N'2', N'500', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035007', N'Armadillo Belt', N'1', N'1', N'3', N'3', N'5', N'40', N'3600', N'1', N'3', N'2', N'500', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035008', N'Bulwark Belt', N'1', N'1', N'3', N'3', N'5', N'45', N'3600', N'1', N'3', N'2', N'500', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035009', N'Cardiff Chain Belt', N'1', N'1', N'3', N'3', N'5', N'50', N'3600', N'1', N'3', N'2', N'500', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16035010', N'Armed Chain Belt', N'1', N'1', N'3', N'3', N'5', N'55', N'3600', N'1', N'3', N'2', N'500', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041001', N'Prelic War Belt ', N'1', N'0', N'0', N'4', N'1', N'2', N'3000', N'0', N'0', N'2', N'900', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041002', N'Padded War Belt', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041003', N'Hauberk War Belt', N'1', N'0', N'0', N'4', N'1', N'8', N'3000', N'0', N'0', N'2', N'900', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041004', N'Scale War Belt', N'1', N'0', N'0', N'4', N'1', N'11', N'3000', N'0', N'0', N'2', N'900', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041005', N'Steel War Belt', N'1', N'0', N'0', N'4', N'1', N'14', N'3000', N'0', N'0', N'2', N'900', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041006', N'Spiral War Belt', N'1', N'0', N'0', N'4', N'1', N'17', N'3000', N'0', N'0', N'2', N'900', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041007', N'Hoplite Belt', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041008', N'Full War Belt', N'1', N'0', N'0', N'4', N'1', N'23', N'3000', N'0', N'0', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041009', N'Ornate War Belt', N'1', N'0', N'0', N'4', N'1', N'26', N'3000', N'0', N'0', N'2', N'900', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041010', N'Rune War Belt', N'1', N'0', N'0', N'4', N'1', N'29', N'3000', N'0', N'0', N'2', N'900', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041011', N'Raven War Belt', N'1', N'0', N'0', N'4', N'1', N'32', N'3000', N'0', N'0', N'2', N'900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041012', N'Castilian Belt', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041013', N'Baleog War Belt', N'1', N'0', N'0', N'4', N'1', N'38', N'3000', N'0', N'0', N'2', N'900', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041014', N'Drake War Belt', N'1', N'0', N'0', N'4', N'1', N'41', N'3000', N'0', N'0', N'2', N'900', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041015', N'Crisis War Belt', N'1', N'0', N'0', N'4', N'1', N'44', N'3000', N'0', N'0', N'2', N'900', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041016', N'Travirun War Belt', N'1', N'0', N'0', N'4', N'1', N'47', N'3000', N'0', N'0', N'2', N'900', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041017', N'Dragoon Belt', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16041018', N'Repel War Belt', N'1', N'0', N'0', N'4', N'1', N'53', N'3000', N'0', N'0', N'2', N'900', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042001', N'Prelic War Belt ', N'1', N'0', N'0', N'4', N'2', N'3', N'3200', N'0', N'3', N'2', N'900', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042002', N'Padded War Belt', N'1', N'0', N'0', N'4', N'2', N'6', N'3200', N'0', N'3', N'2', N'900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042003', N'Hauberk War Belt', N'1', N'0', N'0', N'4', N'2', N'9', N'3200', N'0', N'3', N'2', N'900', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042004', N'Scale War Belt', N'1', N'0', N'0', N'4', N'2', N'12', N'3200', N'0', N'3', N'2', N'900', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042005', N'Steel War Belt', N'1', N'0', N'0', N'4', N'2', N'15', N'3200', N'0', N'3', N'2', N'900', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042006', N'Spiral War Belt', N'1', N'0', N'0', N'4', N'2', N'18', N'3200', N'0', N'3', N'2', N'900', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042007', N'Hoplite Belt', N'1', N'0', N'0', N'4', N'2', N'21', N'3200', N'0', N'3', N'2', N'900', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042008', N'Full War Belt', N'1', N'0', N'0', N'4', N'2', N'24', N'3200', N'0', N'3', N'2', N'900', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042009', N'Ornate War Belt', N'1', N'0', N'0', N'4', N'2', N'27', N'3200', N'0', N'3', N'2', N'900', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042010', N'Rune War Belt', N'1', N'0', N'0', N'4', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042011', N'Raven War Belt', N'1', N'0', N'0', N'4', N'2', N'33', N'3200', N'0', N'3', N'2', N'900', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042012', N'Castilian Belt', N'1', N'0', N'0', N'4', N'2', N'36', N'3200', N'0', N'3', N'2', N'900', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042013', N'Baleog War Belt', N'1', N'0', N'0', N'4', N'2', N'39', N'3200', N'0', N'3', N'2', N'900', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042014', N'Drake War Belt', N'1', N'0', N'0', N'4', N'2', N'42', N'3200', N'0', N'3', N'2', N'900', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042015', N'Crisis War Belt', N'1', N'0', N'0', N'4', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042016', N'Travirun War Belt', N'1', N'0', N'0', N'4', N'2', N'48', N'3200', N'0', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042017', N'Dragoon Belt', N'1', N'0', N'0', N'4', N'2', N'51', N'3200', N'0', N'3', N'2', N'900', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16042018', N'Repel War Belt', N'1', N'0', N'0', N'4', N'2', N'54', N'3200', N'0', N'3', N'2', N'900', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044001', N'Shining Belt', N'1', N'1', N'5', N'4', N'4', N'5', N'3400', N'1', N'3', N'2', N'900', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044002', N'Dazzling Belt', N'1', N'1', N'5', N'4', N'4', N'10', N'3400', N'1', N'3', N'2', N'900', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044003', N'Assault War Belt', N'1', N'1', N'5', N'4', N'4', N'15', N'3400', N'1', N'3', N'2', N'900', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044004', N'Gendarme Belt', N'1', N'1', N'5', N'4', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044005', N'Enduring War Belt', N'1', N'1', N'5', N'4', N'4', N'25', N'3400', N'1', N'3', N'2', N'900', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044006', N'Jousting Belt', N'1', N'1', N'5', N'4', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044007', N'Stark Belt', N'1', N'1', N'5', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044008', N'Menacing Belt', N'1', N'1', N'5', N'4', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044009', N'Hazardous War Belt', N'1', N'1', N'5', N'4', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044010', N'Expert Belt', N'1', N'1', N'5', N'4', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16044011', N'Suspicious War Belt', N'1', N'1', N'5', N'4', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045001', N'Doomed Belt', N'1', N'1', N'3', N'4', N'5', N'10', N'3600', N'1', N'3', N'2', N'900', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045002', N'Essential War Belt', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045003', N'Blazing Belt', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045004', N'Infernal War Belt', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045005', N'Field Marshal Belt', N'1', N'1', N'3', N'4', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045006', N'Destined Belt', N'1', N'1', N'3', N'4', N'5', N'35', N'3600', N'1', N'3', N'2', N'900', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045007', N'Knightly Belt', N'1', N'1', N'3', N'4', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045008', N'Fergana War Belt', N'1', N'1', N'3', N'4', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045009', N'Avernus Belt', N'1', N'1', N'3', N'4', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'16045010', N'Flame War Belt', N'1', N'1', N'3', N'4', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012001', N'Guardian Pendant', N'1', N'0', N'0', N'17', N'2', N'15', N'0', N'0', N'1', N'0', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012002', N'Bone Collector Pendant', N'1', N'0', N'0', N'17', N'2', N'19', N'0', N'0', N'1', N'0', N'400', N'2690', N'444')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012003', N'Angolier Pendant', N'1', N'0', N'0', N'17', N'2', N'23', N'0', N'0', N'1', N'0', N'400', N'3630', N'599')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012004', N'Haken Master Pendant', N'1', N'0', N'0', N'17', N'2', N'27', N'0', N'0', N'1', N'0', N'400', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012005', N'Haken Sorcerer Pendant', N'1', N'0', N'0', N'17', N'2', N'31', N'0', N'0', N'1', N'0', N'400', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012006', N'Undia Pendant', N'1', N'0', N'0', N'17', N'2', N'35', N'0', N'0', N'1', N'0', N'400', N'7230', N'1193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012007', N'Minotauros Pendant', N'1', N'0', N'0', N'17', N'2', N'39', N'0', N'0', N'1', N'0', N'400', N'8700', N'1435')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012008', N'Agate Necklace', N'1', N'0', N'0', N'17', N'2', N'43', N'0', N'0', N'1', N'0', N'400', N'10290', N'1698')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012009', N'Guardian Necklace', N'1', N'0', N'0', N'17', N'2', N'47', N'0', N'0', N'1', N'0', N'400', N'12020', N'1983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012010', N'Cerberus Necklace', N'1', N'0', N'0', N'17', N'2', N'51', N'0', N'0', N'1', N'0', N'400', N'13870', N'2289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17012011', N'Elemental Necklace', N'1', N'0', N'0', N'17', N'2', N'55', N'0', N'0', N'1', N'0', N'400', N'15860', N'2616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014001', N'Onyx Pendant', N'1', N'1', N'5', N'17', N'4', N'15', N'0', N'0', N'2', N'0', N'400', N'2100', N'346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014002', N'Blazing Pendant', N'1', N'1', N'5', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014003', N'Amber Pendant', N'1', N'1', N'5', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'400', N'4640', N'765')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014004', N'Serpentine Pendant', N'1', N'1', N'5', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'400', N'6250', N'1031')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014005', N'Inferno Pendant', N'1', N'1', N'5', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'400', N'8080', N'1333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014006', N'Wise Pendant', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'400', N'10160', N'1676')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014007', N'Nova Pendant', N'1', N'1', N'5', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'400', N'12450', N'2054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014008', N'Star-stone Pendant', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'400', N'14970', N'2470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17014009', N'Dark Slave Pendant', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'400', N'14970', N'2470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015001', N'Ice Amulet', N'1', N'1', N'3', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'400', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015002', N'Lightning Amulet', N'1', N'1', N'3', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'400', N'6580', N'1085')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015003', N'Fire Amulet', N'1', N'1', N'3', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'400', N'6580', N'1085')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015004', N'Magic Amulet', N'1', N'1', N'3', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'400', N'8510', N'1404')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015005', N'Silver Amulet', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'400', N'10690', N'1764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015006', N'Jasper Amulet', N'1', N'1', N'3', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'400', N'13100', N'2161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015007', N'Shining Amulet', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015008', N'Opal Amulet', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17015101', N'Fated Emulet', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016001', N'Crystal Necklace', N'1', N'0', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'400', N'3590', N'592')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016002', N'Iris Necklace', N'1', N'0', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'400', N'5120', N'844')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016003', N'Enokian Necklace', N'1', N'0', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'400', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016004', N'Oblivion Necklace', N'1', N'0', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'400', N'8940', N'1475')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016005', N'Lapis Necklace', N'1', N'0', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'400', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016006', N'Vladimir Necklace', N'1', N'0', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'400', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016007', N'Lunaris Necklace', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2731')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016008', N'Aquamarine Necklace', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2731')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'17016101', N'Homme Fatale Necklace', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2730')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012001', N'Guardian Earrings', N'1', N'0', N'0', N'17', N'2', N'16', N'0', N'0', N'1', N'0', N'200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012002', N'Bone Collector Earrings', N'1', N'0', N'0', N'17', N'2', N'20', N'0', N'0', N'1', N'0', N'200', N'2730', N'451')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012003', N'Angolier Earrings', N'1', N'0', N'0', N'17', N'2', N'24', N'0', N'0', N'1', N'0', N'200', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012004', N'Haken Master Earrings', N'1', N'0', N'0', N'17', N'2', N'28', N'0', N'0', N'1', N'0', N'200', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012005', N'Haken Sorcerer Earrings', N'1', N'0', N'0', N'17', N'2', N'32', N'0', N'0', N'1', N'0', N'200', N'5830', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012006', N'Undia Earrings', N'1', N'0', N'0', N'17', N'2', N'36', N'0', N'0', N'1', N'0', N'200', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012007', N'Minotauros Earrings', N'1', N'0', N'0', N'17', N'2', N'40', N'0', N'0', N'1', N'0', N'200', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012008', N'Orgone Earrings', N'1', N'0', N'0', N'17', N'2', N'44', N'0', N'0', N'1', N'0', N'200', N'10040', N'1656')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012009', N'Agate Earrings', N'1', N'0', N'0', N'17', N'2', N'48', N'0', N'0', N'1', N'0', N'200', N'11690', N'1929')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18012010', N'Guardian Earrings', N'1', N'0', N'0', N'17', N'2', N'52', N'0', N'0', N'1', N'0', N'200', N'13460', N'2220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014001', N'Onyx Earrings', N'1', N'1', N'5', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'200', N'3050', N'503')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014002', N'Blazing Earrings', N'1', N'1', N'5', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'200', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014003', N'Serpentine Earrings', N'1', N'1', N'5', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014004', N'Amber Earrings', N'1', N'1', N'5', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'200', N'7580', N'1250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014005', N'Inferno Earrings', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'200', N'9520', N'1570')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014006', N'Wise Earrings', N'1', N'1', N'5', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'200', N'11680', N'1927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014007', N'Nova Earrings', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'200', N'14040', N'2316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18014008', N'Star-stone Earrings', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'200', N'14040', N'2316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015001', N'Ice Earrings', N'1', N'1', N'3', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'200', N'4580', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015002', N'Lightning Earrings', N'1', N'1', N'3', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'200', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015003', N'Fire Earrings', N'1', N'1', N'3', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'200', N'7980', N'1316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015004', N'Magic Earrings', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'200', N'10020', N'1653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015005', N'Silver Earrings', N'1', N'1', N'3', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'200', N'12290', N'2028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015006', N'Jasper Earrings', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015007', N'Shining Earrings', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18015101', N'Fated Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2440')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016001', N'Crystal Earrings', N'1', N'0', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016002', N'Iris Earrings', N'1', N'0', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'200', N'6480', N'1069')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016003', N'Enokian Earrings', N'1', N'0', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'200', N'8380', N'1382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016004', N'Oblivion Earrings', N'1', N'0', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'200', N'10520', N'1735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016005', N'Vladimir Earrings', N'1', N'0', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'200', N'12900', N'2128')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016006', N'Lunaris Earrings', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016007', N'Aquamarine Earrings', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'18016101', N'Homme Fatale Earrings', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012001', N'Guardian Ring', N'1', N'0', N'0', N'17', N'2', N'14', N'0', N'0', N'1', N'0', N'300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012002', N'Bone Collector Ring', N'1', N'0', N'0', N'17', N'2', N'18', N'0', N'0', N'1', N'0', N'300', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012003', N'Angolier Ring', N'1', N'0', N'0', N'17', N'2', N'22', N'0', N'0', N'1', N'0', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012004', N'Haken Master Ring', N'1', N'0', N'0', N'17', N'2', N'26', N'0', N'0', N'1', N'0', N'300', N'3870', N'639')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012005', N'Haken Sorcerer Ring', N'1', N'0', N'0', N'17', N'2', N'30', N'0', N'0', N'1', N'0', N'300', N'4890', N'807')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012006', N'Undia Ring', N'1', N'0', N'0', N'17', N'2', N'34', N'0', N'0', N'1', N'0', N'300', N'6030', N'995')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012007', N'Minotauros Ring', N'1', N'0', N'0', N'17', N'2', N'38', N'0', N'0', N'1', N'0', N'300', N'7280', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012008', N'Guardian Ring', N'1', N'0', N'0', N'17', N'2', N'42', N'0', N'0', N'1', N'0', N'300', N'8640', N'1425')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012009', N'Cerberus Ring', N'1', N'0', N'0', N'17', N'2', N'46', N'0', N'0', N'1', N'0', N'300', N'10120', N'1669')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012010', N'Elemental Ring', N'1', N'0', N'0', N'17', N'2', N'50', N'0', N'0', N'1', N'0', N'300', N'11720', N'1933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012011', N'Freya Ring', N'1', N'0', N'0', N'17', N'2', N'54', N'0', N'0', N'1', N'0', N'300', N'13430', N'2216')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19012012', N'Dark Tattoo Ring', N'1', N'0', N'0', N'17', N'2', N'58', N'0', N'0', N'1', N'0', N'300', N'15260', N'2517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014001', N'Onyx Ring', N'1', N'1', N'5', N'17', N'4', N'10', N'0', N'0', N'2', N'0', N'300', N'1030', N'170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014002', N'Blazing Ring', N'1', N'1', N'5', N'17', N'4', N'15', N'0', N'0', N'2', N'0', N'300', N'1830', N'302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014003', N'Serpentine Ring', N'1', N'1', N'5', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'300', N'2850', N'470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014004', N'Amber Ring', N'1', N'1', N'5', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'300', N'4060', N'669')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014005', N'Inferno Ring', N'1', N'1', N'5', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'300', N'5460', N'900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014006', N'Wise Ring', N'1', N'1', N'5', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'300', N'7080', N'1168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014007', N'Nova Ring', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'300', N'8880', N'1465')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014008', N'Star-stone Ring', N'1', N'1', N'5', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'300', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014009', N'Dark Slave Ring', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'300', N'13100', N'2161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19014010', N'Elven Ring', N'1', N'1', N'5', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'300', N'13100', N'2161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015001', N'Ice Ring', N'1', N'1', N'3', N'17', N'5', N'15', N'0', N'0', N'3', N'0', N'300', N'1930', N'319')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015002', N'Lightning Ring', N'1', N'1', N'3', N'17', N'5', N'20', N'0', N'0', N'3', N'0', N'300', N'3000', N'495')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015003', N'Fire Ring', N'1', N'1', N'3', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'300', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015004', N'Magic Ring', N'1', N'1', N'3', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'300', N'5750', N'949')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015005', N'Silver Ring', N'1', N'1', N'3', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'300', N'7450', N'1229')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015006', N'Jasper Ring', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'300', N'9350', N'1543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015007', N'Shining Ring', N'1', N'1', N'3', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'300', N'11470', N'1893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015008', N'Opal Ring', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015009', N'Stone Ring', N'1', N'1', N'3', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19015101', N'Fated Ring', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016001', N'Crystal Ring', N'1', N'0', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'300', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016002', N'Iris Ring', N'1', N'0', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'300', N'4480', N'739')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016003', N'Enokian Ring', N'1', N'0', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'300', N'6040', N'996')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016004', N'Oblivion Ring', N'1', N'0', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'300', N'7820', N'1290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016005', N'Vladimir Ring', N'1', N'0', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'300', N'9820', N'1620')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016006', N'Lunaris Ring', N'1', N'0', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'300', N'12040', N'1986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016007', N'Aquamarine Ring', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016008', N'Amina Ring', N'1', N'0', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'19016101', N'Homme Fatale Ring', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2390')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011001', N'Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'3', N'4000', N'0', N'0', N'2', N'300', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011002', N'Linen Gloves', N'1', N'0', N'0', N'1', N'1', N'6', N'4000', N'0', N'0', N'2', N'300', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011003', N'Fleece Gloves', N'1', N'0', N'0', N'1', N'1', N'9', N'4000', N'0', N'0', N'2', N'300', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011004', N'Silky Yarn Gloves', N'1', N'0', N'0', N'1', N'1', N'12', N'4000', N'0', N'0', N'2', N'300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011005', N'Wool Gloves', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'300', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011006', N'Silk Gloves', N'1', N'0', N'0', N'1', N'1', N'18', N'4000', N'0', N'0', N'2', N'300', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011007', N'Ram''s Wool Gloves', N'1', N'0', N'0', N'1', N'1', N'21', N'4000', N'0', N'0', N'2', N'300', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011008', N'Muslin Gloves', N'1', N'0', N'0', N'1', N'1', N'24', N'4000', N'0', N'0', N'2', N'300', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011009', N'Luna Gloves', N'1', N'0', N'0', N'1', N'1', N'27', N'4000', N'0', N'0', N'2', N'300', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011010', N'Celestial Gloves', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'300', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011011', N'Mystical Gloves', N'1', N'0', N'0', N'1', N'1', N'33', N'4000', N'0', N'0', N'2', N'300', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011012', N'Sorceress Gloves', N'1', N'0', N'0', N'1', N'1', N'36', N'4000', N'0', N'0', N'2', N'300', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011013', N'Angora Gloves', N'1', N'0', N'0', N'1', N'1', N'39', N'4000', N'0', N'0', N'2', N'300', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011014', N'Aramid Gloves', N'1', N'0', N'0', N'1', N'1', N'42', N'4000', N'0', N'0', N'2', N'300', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011015', N'Berber Gloves', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'300', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011016', N'Brocades Gloves', N'1', N'0', N'0', N'1', N'1', N'48', N'4000', N'0', N'0', N'2', N'300', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011017', N'Doeskin Gloves', N'1', N'0', N'0', N'1', N'1', N'51', N'4000', N'0', N'0', N'2', N'300', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20011018', N'Nea Gloves', N'1', N'0', N'0', N'1', N'1', N'54', N'4000', N'0', N'0', N'2', N'300', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012001', N'Fabric Gloves', N'1', N'0', N'0', N'1', N'2', N'4', N'4200', N'0', N'3', N'2', N'300', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012002', N'Linen Gloves', N'1', N'0', N'0', N'1', N'2', N'7', N'4200', N'0', N'3', N'2', N'300', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012003', N'Fleece Gloves', N'1', N'0', N'0', N'1', N'2', N'10', N'4200', N'0', N'3', N'2', N'300', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012004', N'Silky Yarn Gloves', N'1', N'0', N'0', N'1', N'2', N'13', N'4200', N'0', N'3', N'2', N'300', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012005', N'Wool Gloves', N'1', N'0', N'0', N'1', N'2', N'16', N'4200', N'0', N'3', N'2', N'300', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012006', N'Silk Gloves', N'1', N'0', N'0', N'1', N'2', N'19', N'4200', N'0', N'3', N'2', N'300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012007', N'Ram''s Wool Gloves', N'1', N'0', N'0', N'1', N'2', N'22', N'4200', N'0', N'3', N'2', N'300', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012008', N'Muslin Gloves', N'1', N'0', N'0', N'1', N'2', N'25', N'4200', N'0', N'3', N'2', N'300', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012009', N'Luna Gloves', N'1', N'0', N'0', N'1', N'2', N'28', N'4200', N'0', N'3', N'2', N'300', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012010', N'Celestial Gloves', N'1', N'0', N'0', N'1', N'2', N'31', N'4200', N'0', N'3', N'2', N'300', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012011', N'Mystical Gloves', N'1', N'0', N'0', N'1', N'2', N'34', N'4200', N'0', N'3', N'2', N'300', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012012', N'Sorceress Gloves', N'1', N'0', N'0', N'1', N'2', N'37', N'4200', N'0', N'3', N'2', N'300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012013', N'Angora Gloves', N'1', N'0', N'0', N'1', N'2', N'40', N'4200', N'0', N'3', N'2', N'300', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012014', N'Aramid Gloves', N'1', N'0', N'0', N'1', N'2', N'43', N'4200', N'0', N'3', N'2', N'300', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012015', N'Berber Gloves', N'1', N'0', N'0', N'1', N'2', N'46', N'4200', N'0', N'3', N'2', N'300', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012016', N'Brocades Gloves', N'1', N'0', N'0', N'1', N'2', N'49', N'4200', N'0', N'3', N'2', N'300', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012017', N'Doeskin Gloves', N'1', N'0', N'0', N'1', N'2', N'52', N'4200', N'0', N'3', N'2', N'300', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20012018', N'Nea Gloves', N'1', N'0', N'0', N'1', N'2', N'55', N'4200', N'0', N'3', N'2', N'300', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014001', N'Lavish Gloves', N'1', N'1', N'5', N'1', N'4', N'5', N'4400', N'1', N'3', N'2', N'300', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014002', N'Insidious Gloves', N'1', N'1', N'5', N'1', N'4', N'10', N'4400', N'1', N'3', N'2', N'300', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014003', N'Exceptional Gloves', N'1', N'1', N'5', N'1', N'4', N'15', N'4400', N'1', N'3', N'2', N'300', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014004', N'Fervid Gloves', N'1', N'1', N'5', N'1', N'4', N'20', N'4400', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014005', N'Nefarious Gloves', N'1', N'1', N'5', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'300', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014006', N'Diabolic Gloves', N'1', N'1', N'5', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'300', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014007', N'Sacred Gloves', N'1', N'1', N'5', N'1', N'4', N'35', N'4400', N'1', N'3', N'2', N'300', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014008', N'Devious Gloves', N'1', N'1', N'5', N'1', N'4', N'40', N'4400', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014009', N'Distinct Gloves', N'1', N'1', N'5', N'1', N'4', N'45', N'4400', N'1', N'3', N'2', N'300', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014010', N'Taffeta Gloves', N'1', N'1', N'5', N'1', N'4', N'50', N'4400', N'1', N'3', N'2', N'300', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20014011', N'Obscure Gloves', N'1', N'1', N'5', N'1', N'4', N'55', N'4400', N'1', N'3', N'2', N'300', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015001', N'Vital Gloves', N'1', N'1', N'3', N'1', N'5', N'10', N'4600', N'1', N'3', N'2', N'300', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015002', N'Wisdom Gloves', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'300', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015003', N'Bentus Gloves', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015004', N'Raschel Gloves', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'300', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015005', N'Calico Gloves', N'1', N'1', N'3', N'1', N'5', N'30', N'4600', N'1', N'3', N'2', N'300', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015006', N'Lumen Gloves', N'1', N'1', N'3', N'1', N'5', N'35', N'4600', N'1', N'3', N'2', N'300', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015007', N'Starlight Gloves', N'1', N'1', N'3', N'1', N'5', N'40', N'4600', N'1', N'3', N'2', N'300', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015008', N'Fluer Gloves', N'1', N'1', N'3', N'1', N'5', N'45', N'4600', N'1', N'3', N'2', N'300', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015009', N'Pincord Gloves', N'1', N'1', N'3', N'1', N'5', N'50', N'4600', N'1', N'3', N'2', N'300', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20015010', N'Dusk Gloves', N'1', N'1', N'3', N'1', N'5', N'55', N'4600', N'1', N'3', N'2', N'300', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021001', N'Light Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'3', N'4000', N'0', N'0', N'2', N'400', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021002', N'Layered Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'6', N'4000', N'0', N'0', N'2', N'400', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021003', N'Quilted Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'9', N'4000', N'0', N'0', N'2', N'400', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021004', N'Studded Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'12', N'4000', N'0', N'0', N'2', N'400', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021005', N'Hunter Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'400', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021006', N'Carp Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'18', N'4000', N'0', N'0', N'2', N'400', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021007', N'Suede Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'21', N'4000', N'0', N'0', N'2', N'400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021008', N'Nubuck Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'24', N'4000', N'0', N'0', N'2', N'400', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021009', N'Slink Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'27', N'4000', N'0', N'0', N'2', N'400', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021010', N'Hide Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'400', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021011', N'Buckskin Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'33', N'4000', N'0', N'0', N'2', N'400', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021012', N'Shagreen Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'36', N'4000', N'0', N'0', N'2', N'400', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021013', N'Lamellar Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'39', N'4000', N'0', N'0', N'2', N'400', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021014', N'Brigandine Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'42', N'4000', N'0', N'0', N'2', N'400', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021015', N'Lorica Gloves', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'400', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021016', N'Swollen Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'48', N'4000', N'0', N'0', N'2', N'400', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021017', N'Sinful Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'51', N'4000', N'0', N'0', N'2', N'400', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20021018', N'DS Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'54', N'4000', N'0', N'0', N'2', N'400', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022001', N'Light Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'4', N'4200', N'0', N'3', N'2', N'400', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022002', N'Layered Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'7', N'4200', N'0', N'3', N'2', N'400', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022003', N'Quilted Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'10', N'4200', N'0', N'3', N'2', N'400', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022004', N'Studded Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'13', N'4200', N'0', N'3', N'2', N'400', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022005', N'Hunter Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'16', N'4200', N'0', N'3', N'2', N'400', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022006', N'Carp Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'19', N'4200', N'0', N'3', N'2', N'400', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022007', N'Suede Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'22', N'4200', N'0', N'3', N'2', N'400', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022008', N'Nubuck Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'25', N'4200', N'0', N'3', N'2', N'400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022009', N'Slink Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'28', N'4200', N'0', N'3', N'2', N'400', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022010', N'Hide Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'31', N'4200', N'0', N'3', N'2', N'400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022011', N'Buckskin Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'34', N'4200', N'0', N'3', N'2', N'400', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022012', N'Shagreen Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'37', N'4200', N'0', N'3', N'2', N'400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022013', N'Lamellar Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'40', N'4200', N'0', N'3', N'2', N'400', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022014', N'Brigandine Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'43', N'4200', N'0', N'3', N'2', N'400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022015', N'Lorica Gloves', N'1', N'0', N'0', N'2', N'2', N'46', N'4200', N'0', N'3', N'2', N'400', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022016', N'Swollen Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'49', N'4200', N'0', N'3', N'2', N'400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022017', N'Sinful Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'52', N'4200', N'0', N'3', N'2', N'400', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20022018', N'DS Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'55', N'4200', N'0', N'3', N'2', N'400', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024001', N'Authentic Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'5', N'4400', N'1', N'3', N'2', N'400', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024002', N'Camouflage Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'10', N'4400', N'1', N'3', N'2', N'400', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024003', N'Illicit Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'15', N'4400', N'1', N'3', N'2', N'400', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024004', N'Rugged Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'20', N'4400', N'1', N'3', N'2', N'400', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024005', N'Dread Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'400', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024006', N'Tough Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'400', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024007', N'Haken-hide Gloves', N'1', N'1', N'5', N'2', N'4', N'35', N'4400', N'1', N'3', N'2', N'400', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024008', N'Combat Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'40', N'4400', N'1', N'3', N'2', N'400', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024009', N'Genuine Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'45', N'4400', N'1', N'3', N'2', N'400', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024010', N'Superior Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'50', N'4400', N'1', N'3', N'2', N'400', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20024011', N'Posh Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'55', N'4400', N'1', N'3', N'2', N'400', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025001', N'Tanned Gloves', N'1', N'1', N'3', N'2', N'5', N'10', N'4600', N'1', N'3', N'2', N'400', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025002', N'Rawhide Gloves', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'400', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025003', N'Demonic Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025004', N'Praetorian Gloves', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'400', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025005', N'Lacrimal Gloves', N'1', N'1', N'3', N'2', N'5', N'30', N'4600', N'1', N'3', N'2', N'400', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025006', N'Eminent Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'35', N'4600', N'1', N'3', N'2', N'400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025007', N'Aquarius Gloves', N'1', N'1', N'3', N'2', N'5', N'40', N'4600', N'1', N'3', N'2', N'400', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025008', N'Rogue Gloves', N'1', N'1', N'3', N'2', N'5', N'45', N'4600', N'1', N'3', N'2', N'400', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025009', N'Fianna Gloves', N'1', N'1', N'3', N'2', N'5', N'50', N'4600', N'1', N'3', N'2', N'400', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20025010', N'Arcane Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'55', N'4600', N'1', N'3', N'2', N'400', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031001', N'Ringed Gloves', N'1', N'0', N'0', N'3', N'1', N'3', N'4000', N'0', N'0', N'2', N'600', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031002', N'Hooked Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'6', N'4000', N'0', N'0', N'2', N'600', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031003', N'Wire Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'9', N'4000', N'0', N'0', N'2', N'600', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031004', N'Hunter Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'12', N'4000', N'0', N'0', N'2', N'600', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031005', N'Battle Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031006', N'Devout Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'18', N'4000', N'0', N'0', N'2', N'600', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031007', N'Banded Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'21', N'4000', N'0', N'0', N'2', N'600', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031008', N'Linked Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'24', N'4000', N'0', N'0', N'2', N'600', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031009', N'Splinted Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'27', N'4000', N'0', N'0', N'2', N'600', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031010', N'Rivet Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031011', N'Venetian Gloves', N'1', N'0', N'0', N'3', N'1', N'33', N'4000', N'0', N'0', N'2', N'600', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031012', N'Arquebus Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'36', N'4000', N'0', N'0', N'2', N'600', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031013', N'Acorn Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'39', N'4000', N'0', N'0', N'2', N'600', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031014', N'Aventail Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'42', N'4000', N'0', N'0', N'2', N'600', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031015', N'Janissary Gloves', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031016', N'Genovese Gloves', N'1', N'0', N'0', N'3', N'1', N'48', N'4000', N'0', N'0', N'2', N'600', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031017', N'Teutonic Gloves', N'1', N'0', N'0', N'3', N'1', N'51', N'4000', N'0', N'0', N'2', N'600', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20031018', N'Natura Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'54', N'4000', N'0', N'0', N'2', N'600', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032001', N'Ringed Gloves', N'1', N'0', N'0', N'3', N'2', N'4', N'4200', N'0', N'3', N'2', N'600', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032002', N'Hooked Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'7', N'4200', N'0', N'3', N'2', N'600', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032003', N'Wire Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'10', N'4200', N'0', N'3', N'2', N'600', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032004', N'Hunter Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'13', N'4200', N'0', N'3', N'2', N'600', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032005', N'Battle Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'16', N'4200', N'0', N'3', N'2', N'600', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032006', N'Devout Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'19', N'4200', N'0', N'3', N'2', N'600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032007', N'Banded Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'22', N'4200', N'0', N'3', N'2', N'600', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032008', N'Linked Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'25', N'4200', N'0', N'3', N'2', N'600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032009', N'Splinted Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'28', N'4200', N'0', N'3', N'2', N'600', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032010', N'Rivet Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'31', N'4200', N'0', N'3', N'2', N'600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032011', N'Venetian Gloves', N'1', N'0', N'0', N'3', N'2', N'34', N'4200', N'0', N'3', N'2', N'600', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032012', N'Arquebus Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'37', N'4200', N'0', N'3', N'2', N'600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032013', N'Acorn Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'40', N'4200', N'0', N'3', N'2', N'600', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032014', N'Aventail Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'43', N'4200', N'0', N'3', N'2', N'600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032015', N'Janissary Gloves', N'1', N'0', N'0', N'3', N'2', N'46', N'4200', N'0', N'3', N'2', N'600', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032016', N'Genovese Gloves', N'1', N'0', N'0', N'3', N'2', N'49', N'4200', N'0', N'3', N'2', N'600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032017', N'Teutonic Gloves', N'1', N'0', N'0', N'3', N'2', N'52', N'4200', N'0', N'3', N'2', N'600', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20032018', N'Natura Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'55', N'4200', N'0', N'3', N'2', N'600', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034001', N'Gritty Gloves', N'1', N'1', N'5', N'3', N'4', N'5', N'4400', N'1', N'3', N'2', N'600', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034002', N'Heavy Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'10', N'4400', N'1', N'3', N'2', N'600', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034003', N'Ultimate Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'15', N'4400', N'1', N'3', N'2', N'600', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034004', N'Brisk Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'20', N'4400', N'1', N'3', N'2', N'600', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034005', N'Bound Gloves', N'1', N'1', N'5', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034006', N'Secure Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034007', N'Devout Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'35', N'4400', N'1', N'3', N'2', N'600', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034008', N'Solid Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'40', N'4400', N'1', N'3', N'2', N'600', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034009', N'Discarded Gloves', N'1', N'1', N'5', N'3', N'4', N'45', N'4400', N'1', N'3', N'2', N'600', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034010', N'Engraved Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'50', N'4400', N'1', N'3', N'2', N'600', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20034011', N'Cure Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'55', N'4400', N'1', N'3', N'2', N'600', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035001', N'Dense Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'10', N'4600', N'1', N'3', N'2', N'600', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035002', N'Burnished Gloves', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035003', N'Ribbed Gloves', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035004', N'Arcane Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035005', N'Ashen Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'30', N'4600', N'1', N'3', N'2', N'600', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035006', N'Placidus Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'35', N'4600', N'1', N'3', N'2', N'600', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035007', N'Armadillo Gloves', N'1', N'1', N'3', N'3', N'5', N'40', N'4600', N'1', N'3', N'2', N'600', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035008', N'Bulwark Gloves', N'1', N'1', N'3', N'3', N'5', N'45', N'4600', N'1', N'3', N'2', N'600', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035009', N'Cardiff Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'50', N'4600', N'1', N'3', N'2', N'600', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20035010', N'Armed Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'55', N'4600', N'1', N'3', N'2', N'600', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041001', N'Prelic War Gloves', N'1', N'0', N'0', N'4', N'1', N'3', N'4000', N'0', N'0', N'2', N'1100', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041002', N'Padded War Gloves', N'1', N'0', N'0', N'4', N'1', N'6', N'4000', N'0', N'0', N'2', N'1100', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041003', N'Hauberk War Gloves', N'1', N'0', N'0', N'4', N'1', N'9', N'4000', N'0', N'0', N'2', N'1100', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041004', N'Scale War Gloves', N'1', N'0', N'0', N'4', N'1', N'12', N'4000', N'0', N'0', N'2', N'1100', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041005', N'Steel War Gloves', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'1100', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041006', N'Spiral War Gloves', N'1', N'0', N'0', N'4', N'1', N'18', N'4000', N'0', N'0', N'2', N'1100', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041007', N'Hoplite Gloves', N'1', N'0', N'0', N'4', N'1', N'21', N'4000', N'0', N'0', N'2', N'1100', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041008', N'Full War Gloves', N'1', N'0', N'0', N'4', N'1', N'24', N'4000', N'0', N'0', N'2', N'1100', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041009', N'Ornate War Gloves', N'1', N'0', N'0', N'4', N'1', N'27', N'4000', N'0', N'0', N'2', N'1100', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041010', N'Rune War Gloves', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'1100', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041011', N'Raven War Gloves', N'1', N'0', N'0', N'4', N'1', N'33', N'4000', N'0', N'0', N'2', N'1100', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041012', N'Castilian Gloves', N'1', N'0', N'0', N'4', N'1', N'36', N'4000', N'0', N'0', N'2', N'1100', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041013', N'Baleog War Gloves', N'1', N'0', N'0', N'4', N'1', N'39', N'4000', N'0', N'0', N'2', N'1100', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041014', N'Drake War Gloves', N'1', N'0', N'0', N'4', N'1', N'42', N'4000', N'0', N'0', N'2', N'1100', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041015', N'Crisis War Gloves', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'1100', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041016', N'Travirun War Gloves', N'1', N'0', N'0', N'4', N'1', N'48', N'4000', N'0', N'0', N'2', N'1100', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041017', N'Dragoon Gloves', N'1', N'0', N'0', N'4', N'1', N'51', N'4000', N'0', N'0', N'2', N'1100', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20041018', N'Repel War Gloves', N'1', N'0', N'0', N'4', N'1', N'54', N'4000', N'0', N'0', N'2', N'1100', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042001', N'Prelic War Gloves', N'1', N'0', N'0', N'4', N'2', N'4', N'4200', N'0', N'3', N'2', N'1100', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042002', N'Padded War Gloves', N'1', N'0', N'0', N'4', N'2', N'7', N'4200', N'0', N'3', N'2', N'1100', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042003', N'Hauberk War Gloves', N'1', N'0', N'0', N'4', N'2', N'10', N'4200', N'0', N'3', N'2', N'1100', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042004', N'Scale War Gloves', N'1', N'0', N'0', N'4', N'2', N'13', N'4200', N'0', N'3', N'2', N'1100', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042005', N'Steel War Gloves', N'1', N'0', N'0', N'4', N'2', N'16', N'4200', N'0', N'3', N'2', N'1100', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042006', N'Spiral War Gloves', N'1', N'0', N'0', N'4', N'2', N'19', N'4200', N'0', N'3', N'2', N'1100', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042007', N'Hoplite Gloves', N'1', N'0', N'0', N'4', N'2', N'22', N'4200', N'0', N'3', N'2', N'1100', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042008', N'Full War Gloves', N'1', N'0', N'0', N'4', N'2', N'25', N'4200', N'0', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042009', N'Ornate War Gloves', N'1', N'0', N'0', N'4', N'2', N'28', N'4200', N'0', N'3', N'2', N'1100', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042010', N'Rune War Gloves', N'1', N'0', N'0', N'4', N'2', N'31', N'4200', N'0', N'3', N'2', N'1100', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042011', N'Raven War Gloves', N'1', N'0', N'0', N'4', N'2', N'34', N'4200', N'0', N'3', N'2', N'1100', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042012', N'Castilian Gloves', N'1', N'0', N'0', N'4', N'2', N'37', N'4200', N'0', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042013', N'Baleog War Gloves', N'1', N'0', N'0', N'4', N'2', N'40', N'4200', N'0', N'3', N'2', N'1100', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042014', N'Drake War Gloves', N'1', N'0', N'0', N'4', N'2', N'43', N'4200', N'0', N'3', N'2', N'1100', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042015', N'Crisis War Gloves', N'1', N'0', N'0', N'4', N'2', N'46', N'4200', N'0', N'3', N'2', N'1100', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042016', N'Travirun War Gloves', N'1', N'0', N'0', N'4', N'2', N'49', N'4200', N'0', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042017', N'Dragoon Gloves', N'1', N'0', N'0', N'4', N'2', N'52', N'4200', N'0', N'3', N'2', N'1100', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20042018', N'Repel War Gloves', N'1', N'0', N'0', N'4', N'2', N'55', N'4200', N'0', N'3', N'2', N'1100', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044001', N'Shining Gloves', N'1', N'1', N'5', N'4', N'4', N'5', N'4400', N'1', N'3', N'2', N'1100', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044002', N'Dazzling Gloves', N'1', N'1', N'5', N'4', N'4', N'10', N'4400', N'1', N'3', N'2', N'1100', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044003', N'Assault War Gloves', N'1', N'1', N'5', N'4', N'4', N'15', N'4400', N'1', N'3', N'2', N'1100', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044004', N'Gendarme Gloves', N'1', N'1', N'5', N'4', N'4', N'20', N'4400', N'1', N'3', N'2', N'1100', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044005', N'Enduring War Gloves', N'1', N'1', N'5', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'1100', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044006', N'Jousting Gloves', N'1', N'1', N'5', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'1100', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044007', N'Stark Gloves', N'1', N'1', N'5', N'4', N'4', N'35', N'4400', N'1', N'3', N'2', N'1100', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044008', N'Menacing Gloves', N'1', N'1', N'5', N'4', N'4', N'40', N'4400', N'1', N'3', N'2', N'1100', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044009', N'Hazardous War Gloves', N'1', N'1', N'5', N'4', N'4', N'45', N'4400', N'1', N'3', N'2', N'1100', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044010', N'Expert Gloves', N'1', N'1', N'5', N'4', N'4', N'50', N'4400', N'1', N'3', N'2', N'1100', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20044011', N'Suspicious War Gloves', N'1', N'1', N'5', N'4', N'4', N'55', N'4400', N'1', N'3', N'2', N'1100', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045001', N'Doomed Gloves', N'1', N'1', N'3', N'4', N'5', N'10', N'4600', N'1', N'3', N'2', N'1100', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045002', N'Essential War Gloves', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'1100', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045003', N'Blazing Gloves', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'1100', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045004', N'Infernal War Gloves', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'1100', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045005', N'Field Marshal Gloves', N'1', N'1', N'3', N'4', N'5', N'30', N'4600', N'1', N'3', N'2', N'1100', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045006', N'Destined Gloves', N'1', N'1', N'3', N'4', N'5', N'35', N'4600', N'1', N'3', N'2', N'1100', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045007', N'Knightly Gloves', N'1', N'1', N'3', N'4', N'5', N'40', N'4600', N'1', N'3', N'2', N'1100', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045008', N'Fergana War Gloves', N'1', N'1', N'3', N'4', N'5', N'45', N'4600', N'1', N'3', N'2', N'1100', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045009', N'Avernus Vambraces', N'1', N'1', N'3', N'4', N'5', N'50', N'4600', N'1', N'3', N'2', N'1100', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'20045010', N'Flame War Gloves', N'1', N'1', N'3', N'4', N'5', N'55', N'4600', N'1', N'3', N'2', N'1100', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010084', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010085', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010086', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010537', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21010539', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21011083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21012083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013001', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013002', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013003', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013004', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013005', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013006', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013007', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013008', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013009', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013010', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013011', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013012', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013013', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013014', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013015', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013016', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013017', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013018', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013019', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013020', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013021', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013022', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013023', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013024', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013025', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013026', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013027', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013028', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013029', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013030', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013031', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013032', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013033', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013034', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013035', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013036', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013037', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013038', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013039', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013040', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013081', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013082', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21013083', N'Bronze Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020084', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020085', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020086', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020537', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21020539', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21021083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21022083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023001', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023002', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023003', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023004', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023005', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023006', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023007', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023008', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023009', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023010', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023011', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023012', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023013', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023014', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023015', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023016', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023017', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023018', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023019', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023020', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023021', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023022', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023023', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023024', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023025', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023026', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023027', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023028', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023029', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023030', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023031', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023032', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023033', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023034', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023035', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023036', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023037', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023038', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023039', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023040', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023081', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023082', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21023083', N'Silver Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030084', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030085', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030086', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030537', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21030539', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21031083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21032083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033001', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033002', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033003', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033004', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033005', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033006', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033007', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033008', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033009', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033010', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033011', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033012', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033013', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033014', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033015', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033016', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033017', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033018', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033019', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033020', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033021', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033022', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033023', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033024', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033025', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033026', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033027', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033028', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033029', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033030', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033031', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033032', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033033', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033034', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033035', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033036', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033037', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033038', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033039', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033040', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033081', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033082', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'21033083', N'Gold Card', N'0', N'0', N'0', N'36', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001001', N'Golden Deacon Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001002', N'Golden Deacon Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001003', N'Golden Deacon Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001004', N'Golden Deacon Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001005', N'Golden Deacon Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001006', N'Golden Deacon Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51001007', N'Golden Deacon Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002001', N'Grey Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002002', N'Grey Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002003', N'Grey Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002004', N'Grey Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002005', N'Grey Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002006', N'Grey Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51002007', N'Grey Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003001', N'Black Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003002', N'Black Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003003', N'Black Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003004', N'Black Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003005', N'Black Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003006', N'Black Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51003007', N'Black Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004001', N'Navy Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004002', N'Navy Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004003', N'Navy Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004004', N'Navy Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004005', N'Navy Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004006', N'Navy Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51004007', N'Navy Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005001', N'Imperial Officer Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005002', N'Imperial Officer Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005003', N'Imperial Officer Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005004', N'Imperial Officer Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005005', N'Imperial Officer Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005006', N'Imperial Officer Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51005007', N'Imperial Officer Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51006001', N'Danny Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51007001', N'Mohican [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008001', N'Purplish Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008002', N'Purplish Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008003', N'Purplish Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008004', N'Purplish Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008005', N'Purplish Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008006', N'Purplish Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51008007', N'Purplish Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009001', N'Brown Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009002', N'Brown Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009003', N'Brown Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009004', N'Brown Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009005', N'Brown Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009006', N'Brown Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51009007', N'Brown Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010001', N'Black Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010002', N'Black Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010003', N'Black Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010004', N'Black Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010005', N'Black Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010006', N'Black Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51010007', N'Black Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51011001', N'Shaggy Cut [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012001', N'Purple Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012002', N'Purple Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012003', N'Purple Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012004', N'Purple Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012005', N'Purple Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012006', N'Purple Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51012007', N'Purple Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013001', N'Blue Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013002', N'Blue Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013003', N'Blue Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013004', N'Blue Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013005', N'Blue Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013006', N'Blue Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51013007', N'Blue Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014001', N'Pink Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014002', N'Pink Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014003', N'Pink Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014004', N'Pink Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014005', N'Pink Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014006', N'Pink Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51014007', N'Pink Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015001', N'White Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015002', N'White Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015003', N'White Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015004', N'White Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015005', N'White Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015006', N'White Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51015007', N'White Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016001', N'Traditional Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016002', N'Traditional Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016003', N'Traditional Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016004', N'Traditional Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016005', N'Traditional Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016006', N'Traditional Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51016007', N'Traditional Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017001', N'Indigo Pirate Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017002', N'Indigo Pirate Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017003', N'Indigo Pirate Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017004', N'Indigo Pirate Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017005', N'Indigo Pirate Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017006', N'Indigo Pirate Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51017007', N'Indigo Pirate Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018001', N'White Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018002', N'White Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018003', N'White Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018004', N'White Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018005', N'White Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018006', N'White Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018007', N'White Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018008', N'White Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018009', N'White Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018010', N'White Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018011', N'White Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018012', N'White Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018013', N'White Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51018014', N'White Cowboy Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019001', N'Golden Pattern Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019002', N'Golden Pattern Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019003', N'Golden Pattern Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019004', N'Golden Pattern Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019005', N'Golden Pattern Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019006', N'Golden Pattern Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51019007', N'Golden Pattern Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020001', N'Blue Gold Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020002', N'Blue Gold Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020003', N'Blue Gold Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020004', N'Blue Gold Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020005', N'Blue Gold Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020006', N'Blue Gold Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51020007', N'Blue Gold Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021001', N'Red Gold Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021002', N'Red Gold Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021003', N'Red Gold Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021004', N'Red Gold Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021005', N'Red Gold Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021006', N'Red Gold Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51021007', N'Red Gold Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022001', N'Violent Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022002', N'Violent Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022003', N'Violent Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022004', N'Violent Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022005', N'Violent Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022006', N'Violent Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51022007', N'Violent Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023001', N'Golden Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023002', N'Golden Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023003', N'Golden Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023004', N'Golden Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023005', N'Golden Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023006', N'Golden Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51023007', N'Golden Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024001', N'Brown Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024002', N'Brown Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024003', N'Brown Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024004', N'Brown Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024005', N'Brown Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024006', N'Brown Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51024007', N'Brown Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025001', N'Green Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025002', N'Green Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025003', N'Green Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025004', N'Green Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025005', N'Green Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025006', N'Green Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51025007', N'Green Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026001', N'Orange Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026002', N'Orange Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026003', N'Orange Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026004', N'Orange Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026005', N'Orange Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026006', N'Orange Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51026007', N'Orange Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027001', N'Masquerade Ball Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027002', N'Masquerade Ball Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027003', N'Masquerade Ball Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027004', N'Masquerade Ball Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027005', N'Masquerade Ball Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027006', N'Masquerade Ball Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51027007', N'Masquerade Ball Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028001', N'Orange Chain Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028002', N'Orange Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028003', N'Orange Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028004', N'Orange Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028005', N'Orange Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028006', N'Orange Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51028007', N'Orange Chain Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029001', N'Pinstripe Chain Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029002', N'Pinstripe Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029003', N'Pinstripe Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029004', N'Pinstripe Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029005', N'Pinstripe Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029006', N'Pinstripe Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51029007', N'Pinstripe Chain Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030001', N'Santa Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030002', N'Santa Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030003', N'Santa Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030004', N'Santa Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030005', N'Santa Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030006', N'Santa Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51030007', N'Santa Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031001', N'New Traditional - Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031002', N'New Traditional - Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031003', N'New Traditional - Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031004', N'New Traditional - Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031005', N'New Traditional - Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031006', N'New Traditional - Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51031007', N'New Traditional - Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032001', N'Red Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032002', N'Red Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032003', N'Red Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032004', N'Red Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032005', N'Red Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032006', N'Red Chain Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51032007', N'Red Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033001', N'Black Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033002', N'Black Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033003', N'Black Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033004', N'Black Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033005', N'Black Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033006', N'Black Chain Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51033007', N'Black Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034001', N'Purplish Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034002', N'Purplish Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034003', N'Purplish Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034004', N'Purplish Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034005', N'Purplish Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034006', N'Purplish Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51034007', N'Purplish Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035001', N'Brown Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035002', N'Brown Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035003', N'Brown Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035004', N'Brown Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035005', N'Brown Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035006', N'Brown Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51035007', N'Brown Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036001', N'Pied Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036002', N'Pied Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036003', N'Pied Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036004', N'Pied Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036005', N'Pied Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036006', N'Pied Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51036007', N'Pied Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037001', N'Black Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037002', N'Black Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037003', N'Black Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037004', N'Black Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037005', N'Black Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037006', N'Black Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51037007', N'Black Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038001', N'Red Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038002', N'Red Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038003', N'Red Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038004', N'Red Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038005', N'Red Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038006', N'Red Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51038007', N'Red Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039001', N'Blue Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039002', N'Blue Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039003', N'Blue Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039004', N'Blue Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039005', N'Blue Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039006', N'Blue Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51039007', N'Blue Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040001', N'Dark Green Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040002', N'Dark Green Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040003', N'Dark Green Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040004', N'Dark Green Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040005', N'Dark Green Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040006', N'Dark Green Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51040007', N'Dark Green Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041001', N'Scuba Octopus [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041002', N'Scuba Lower Garment [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041003', N'Scuba Flippers [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041004', N'Scuba Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041005', N'Scuba Upper Garment [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041006', N'Scuba Goggles [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51041007', N'Scuba Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042001', N'Radiant Wedding Costume Tuxedo [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042002', N'Radiant Wedding Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042003', N'Radiant Wedding Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042004', N'Radiant Wedding Costume Watch [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042005', N'Radiant Wedding Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042006', N'Radiant Wedding Costume Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51042007', N'Radiant Wedding Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043001', N'Devil Prince Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043002', N'Devil Prince Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043003', N'Devil Prince Leather Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043004', N'Devil Prince Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043005', N'Devil Prince Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043006', N'Devil Prince Necktie', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51043007', N'Devil Prince Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044001', N'Red Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044002', N'Red Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044003', N'Red Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044004', N'Red Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044005', N'Red Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044006', N'Red Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51044007', N'Red Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045001', N'Blue Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045002', N'Blue Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045003', N'Blue Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045004', N'Blue Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045005', N'Blue Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045006', N'Blue Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51045007', N'Blue Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046001', N'White Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046002', N'White Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046003', N'White Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046004', N'White Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046005', N'White Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046006', N'White Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51046007', N'White Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047001', N'Snow Wolf''s Cloak [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047002', N'Snow Wolf''s Fur Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047003', N'Snow Wolf''s Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047004', N'Snow Wolf''s Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047005', N'Snow Wolf''s Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047006', N'Snow Wolf''s Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51047007', N'Snow Wolf''s Topknot [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048001', N'White School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048002', N'White School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048003', N'White School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048004', N'White School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048005', N'White School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048006', N'White School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51048007', N'White School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049001', N'Purple School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049002', N'Purple School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049003', N'Purple School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049004', N'Purple School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049005', N'Purple School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049006', N'Purple School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51049007', N'Purple School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050001', N'Brown School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050002', N'Brown School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050003', N'Brown School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050004', N'Brown School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050005', N'Brown School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050006', N'Brown School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51050007', N'Brown School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051001', N'Snake Patterned Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051002', N'Gold Chain-Deco Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051003', N'Red Deviant Crease Lined Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051004', N'Black Snake Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051005', N'Deviant Crease Lined Red Slim Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051006', N'Metal Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51051007', N'Sharp Black Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052001', N'Shining Ark Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052002', N'Shining Ark Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052003', N'Shining Ark Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052004', N'Shining Ark Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052005', N'Shining Ark Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052006', N'Shining Ark Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51052007', N'Shining Ark Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101001', N'Black Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101002', N'Black Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101003', N'Black Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101004', N'Black Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101005', N'Black Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101006', N'Black Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51101007', N'Black Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102001', N'White Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102002', N'White Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102003', N'White Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102004', N'White Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102005', N'White Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102006', N'White Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51102007', N'White Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103001', N'Red Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103002', N'Red Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103003', N'Red Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103004', N'Red Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103005', N'Red Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103006', N'Red Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51103007', N'Red Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104001', N'Brown Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104002', N'Brown Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104003', N'Brown Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104004', N'Brown Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104005', N'Brown Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104006', N'Brown Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51104007', N'Brown Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105001', N'White Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105002', N'White Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105003', N'White Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105004', N'White Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105005', N'White Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105006', N'White Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51105007', N'White Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106001', N'Green Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106002', N'Green Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106003', N'Green Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106004', N'Green Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106005', N'Green Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106006', N'Green Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51106007', N'Green Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107001', N'Santa Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107002', N'Santa Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107003', N'Santa Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107004', N'Santa Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107005', N'Santa Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107006', N'Santa Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51107007', N'Santa Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108001', N'Navy Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108002', N'Navy Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108003', N'Navy Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108004', N'Navy Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108005', N'Navy Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108006', N'Navy Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51108007', N'Navy Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109001', N'Green Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109002', N'Green Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109003', N'Green Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109004', N'Green Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109005', N'Green Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109006', N'Green Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51109007', N'Green Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110001', N'Violet Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110002', N'Violet Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110003', N'Violet Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110004', N'Violet Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110005', N'Violet Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110006', N'Violet Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51110007', N'Violet Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111001', N'New Traditional - Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111002', N'New Traditional - Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111003', N'New Traditional - Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111004', N'New Traditional - Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111005', N'New Traditional - Top [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111006', N'New Traditional - Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51111007', N'New Traditional - Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112001', N'Black Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112002', N'Black Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112003', N'Black Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112004', N'Black Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112005', N'Black Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112006', N'Black Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51112007', N'Black Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113001', N'Red Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113002', N'Red Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113003', N'Red Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113004', N'Red Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113005', N'Red Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113006', N'Red Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51113007', N'Red Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114001', N'Emerald Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114002', N'Emerald Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114003', N'Emerald Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114004', N'Emerald Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114005', N'Emerald Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114006', N'Emerald Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51114007', N'Emerald Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115001', N'Pink Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115002', N'Pink Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115003', N'Pink Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115004', N'Pink Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115005', N'Pink Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115006', N'Pink Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51115007', N'Pink Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116001', N'Blue Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116002', N'Blue Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116003', N'Blue Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116004', N'Blue Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116005', N'Blue Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116006', N'Blue Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51116007', N'Blue Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117001', N'Yellow Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117002', N'Yellow Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117003', N'Yellow Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117004', N'Yellow Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117005', N'Yellow Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117006', N'Yellow Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51117007', N'Yellow Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118001', N'Blue Pirate Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118002', N'Blue Pirate Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118003', N'Blue Pirate Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118004', N'Blue Pirate Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118005', N'Blue Pirate Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118006', N'Blue Pirate Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51118007', N'Blue Pirate Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119001', N'Scuba Surfing Board [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119002', N'Scuba Lower Garment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119003', N'Scuba Flippers [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119004', N'Scuba Bracelet [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119005', N'Scuba Upper Garment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119006', N'Scuba Goggles [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51119007', N'Scuba Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120001', N'Purple Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120002', N'Purple Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120003', N'Purple Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120004', N'Purple Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120005', N'Purple Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120006', N'Purple Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51120007', N'Purple Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121001', N'Blue Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121002', N'Blue Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121003', N'Blue Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121004', N'Blue Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121005', N'Blue Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121006', N'Blue Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51121007', N'Blue Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122001', N'Black Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122002', N'Black Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122003', N'Black Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122004', N'Black Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122005', N'Black Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122006', N'Black Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51122007', N'Black Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123001', N'Radiant Wedding Costume Adornment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123002', N'Radiant Wedding Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123003', N'Radiant Wedding Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123004', N'Radiant Wedding Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123005', N'Radiant Wedding Costume Dress [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123006', N'Radiant Wedding Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51123007', N'Radiant Wedding Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124001', N'Vampire Skeleton Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124002', N'Vampire Zipper Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124003', N'Vampire Metal Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124004', N'Vampire Leather Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124005', N'Vampire Skeleton Tanktop', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124006', N'Vampire Pumpkin Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51124007', N'Vampire Bat-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125001', N'Red Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125002', N'Red Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125003', N'Red Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125004', N'Red Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125005', N'Red Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125006', N'Red Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51125007', N'Red Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126001', N'Blue Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126002', N'Blue Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126003', N'Blue Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126004', N'Blue Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126005', N'Blue Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126006', N'Blue Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51126007', N'Blue Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127001', N'White Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127002', N'White Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127003', N'White Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127004', N'White Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127005', N'White Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127006', N'White Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51127007', N'White Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128001', N'Blue Kingbird''s Feather Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128002', N'Blue Kingbird''s Fur Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128003', N'Blue Kingbird''s Heels [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128004', N'Blue Kingbird''s Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128005', N'Blue Kingbird''s Belted Tunic [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128006', N'Blue Kingbird''s Feathers [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51128007', N'Blue Kingbird''s Plume [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129001', N'Black School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129002', N'Black School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129003', N'Black School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129004', N'Black School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129005', N'Black School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129006', N'Black School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51129007', N'Black School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130001', N'Yellow School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130002', N'Yellow School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130003', N'Yellow School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130004', N'Yellow School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130005', N'Yellow School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130006', N'Yellow School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51130007', N'Yellow School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131001', N'White School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131002', N'White School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131003', N'White School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131004', N'White School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131005', N'White School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131006', N'White School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131007', N'White School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51131008', N'White School Uniform Costume Shirt [Roselle] [JPN]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132001', N'Snake-Deco Phoenix Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132002', N'Chain-Deco Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132003', N'Black Strap Sandals', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132004', N'Gold Ornament Bracelet', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132005', N'Hot Snake-Deco Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132006', N'Gold Ornament Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51132007', N'Pink Snake-Deco Upsweep Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133001', N'Shining Ark Costume Wing [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133002', N'Shining Ark Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133003', N'Shining Ark Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133004', N'Shining Ark Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133005', N'Shining Ark Costume Dress [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133006', N'Shining Ark Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51133007', N'Shining Ark Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201001', N'Blue Flower Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201002', N'Blue Flower Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201003', N'Blue Flower Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201004', N'Blue Flower Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201005', N'Blue Flower Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201006', N'Blue Flower Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51201007', N'Blue Flower Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202001', N'Black Floral Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202002', N'Black Floral Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202003', N'Black Floral Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202004', N'Black Floral Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202005', N'Black Floral Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202006', N'Black Floral Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51202007', N'Black Floral Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203001', N'Yellow Flower Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203002', N'Yellow Flower Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203003', N'Yellow Flower Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203004', N'Yellow Flower Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203005', N'Yellow Flower Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203006', N'Yellow Flower Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51203007', N'Yellow Flower Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204001', N'New Traditional - Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204002', N'New Traditional - Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204003', N'New Traditional - Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204004', N'New Traditional - Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204005', N'New Traditional - Top [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204006', N'New Traditional - Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51204007', N'New Traditional - Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205001', N'Purple Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205002', N'Purple Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205003', N'Purple Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205004', N'Purple Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205005', N'Purple Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205006', N'Purple Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51205007', N'Purple Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206001', N'Emerald Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206002', N'Emerald Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206003', N'Emerald Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206004', N'Emerald Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206005', N'Emerald Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206006', N'Emerald Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51206007', N'Emerald Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207001', N'Yellow Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207002', N'Yellow Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207003', N'Yellow Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207004', N'Yellow Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207005', N'Yellow Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207006', N'Yellow Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51207007', N'Yellow Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208001', N'Purple Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208002', N'Purple Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208003', N'Purple Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208004', N'Purple Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208005', N'Purple Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208006', N'Purple Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51208007', N'Purple Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209001', N'Black Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209002', N'Black Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209003', N'Black Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209004', N'Black Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209005', N'Black Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209006', N'Black Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51209007', N'Black Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210001', N'Pink Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210002', N'Pink Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210003', N'Pink Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210004', N'Pink Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210005', N'Pink Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210006', N'Pink Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51210007', N'Pink Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211001', N'Brown Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211002', N'Brown Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211003', N'Brown Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211004', N'Brown Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211005', N'Brown Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211006', N'Brown Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51211007', N'Brown Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212001', N'Green Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212002', N'Green Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212003', N'Green Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212004', N'Green Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212005', N'Green Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212006', N'Green Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51212007', N'Green Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213001', N'Red Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213002', N'Red Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213003', N'Red Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213004', N'Red Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213005', N'Red Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213006', N'Red Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51213007', N'Red Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214001', N'White Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214002', N'White Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214003', N'White Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214004', N'White Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214005', N'White Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214006', N'White Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51214007', N'White Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215001', N'Blue Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215002', N'Blue Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215003', N'Blue Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215004', N'Blue Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215005', N'Blue Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215006', N'Blue Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51215007', N'Blue Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216001', N'Pink Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216002', N'Pink Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216003', N'Pink Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216004', N'Pink Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216005', N'Pink Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216006', N'Pink Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51216007', N'Pink Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217001', N'Scuba Water Gun [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217002', N'Scuba Lower Garment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217003', N'Scuba Flippers [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217004', N'Scuba Bracelet [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217005', N'Scuba Upper Garment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217006', N'Scuba Goggles [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51217007', N'Scuba Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218001', N'Black Pirate Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218002', N'Black Pirate Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218003', N'Black Pirate Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218004', N'Black Pirate Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218005', N'Black Pirate Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218006', N'Black Pirate Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51218007', N'Black Pirate Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219001', N'Blue Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219002', N'Blue Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219003', N'Blue Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219004', N'Blue Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219005', N'Blue Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219006', N'Blue Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51219007', N'Blue Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220001', N'Emerald Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220002', N'Emerald Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220003', N'Emerald Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220004', N'Emerald Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220005', N'Emerald Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220006', N'Emerald Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51220007', N'Emerald Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221001', N'Green Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221002', N'Green Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221003', N'Green Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221004', N'Green Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221005', N'Green Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221006', N'Green Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51221007', N'Green Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222001', N'Radiant Wedding Costume Adornment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222002', N'Radiant Wedding Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222003', N'Radiant Wedding Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222004', N'Radiant Wedding Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222005', N'Radiant Wedding Costume Dress [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222006', N'Radiant Wedding Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51222007', N'Radiant Wedding Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223001', N'Fairy Butterfly Wings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223002', N'Fairy Star Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223003', N'Fairy Ribbon Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223004', N'Fairy Flower Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223005', N'Fairy Skeleton Blouse', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223006', N'Fairy Heart Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51223007', N'Fairy Candy-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224001', N'Red Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224002', N'Red Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224003', N'Red Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224004', N'Red Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224005', N'Red Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224006', N'Red Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51224007', N'Red Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225001', N'Blue Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225002', N'Blue Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225003', N'Blue Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225004', N'Blue Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225005', N'Blue Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225006', N'Blue Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51225007', N'Blue Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226001', N'White Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226002', N'White Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226003', N'White Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226004', N'White Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226005', N'White Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226006', N'White Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51226007', N'White Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227001', N'White Bear''s Overcoat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227002', N'White Bear''s Bon Bon Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227003', N'White Bear''s Fur Boots [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227004', N'White Bear''s Fur Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227005', N'White Bear''s Adorned Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227006', N'White Bear''s Fur Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51227007', N'White Bear''s Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228001', N'White School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228002', N'White School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228003', N'White School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228004', N'White School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228005', N'White School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228006', N'White School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51228007', N'White School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229001', N'Plum School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229002', N'Plum School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229003', N'Plum School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229004', N'Plum School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229005', N'Plum School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229006', N'Plum School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51229007', N'Plum School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230001', N'Black School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230002', N'Black School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230003', N'Black School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230004', N'Black School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230005', N'Black School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230006', N'Black School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51230007', N'Black School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231001', N'Red Frill Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231002', N'Gold Ornament Volume Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231003', N'Deviant Crease Lined Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231004', N'Gold Snake-Deco Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231005', N'Red Frill Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231006', N'Amber Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'51231007', N'Gold Snake-Deco Lovely Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001001', N'Golden Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001002', N'Golden Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001003', N'Golden Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001004', N'Golden Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001005', N'Golden Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001006', N'Golden Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52001007', N'Golden Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002001', N'Grey Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002002', N'Grey Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002003', N'Grey Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002004', N'Grey Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002005', N'Grey Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002006', N'Grey Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52002007', N'Grey Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003001', N'Navy Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003002', N'Navy Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003003', N'Navy Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003004', N'Navy Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003005', N'Navy Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003006', N'Navy Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52003007', N'Navy Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004001', N'Navy Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004002', N'Navy Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004003', N'Navy Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004004', N'Navy Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004005', N'Navy Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004006', N'Navy Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52004007', N'Navy Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005001', N'Dark Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005002', N'Dark Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005003', N'Dark Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005004', N'Dark Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005005', N'Dark Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005006', N'Dark Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52005007', N'Dark Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52006001', N'Bob Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52007001', N'Mushroom Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52008001', N'Wind Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009001', N'Violet Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009002', N'Violet Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009003', N'Violet Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009004', N'Violet Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009005', N'Violet Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009006', N'Violet Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009007', N'Violet Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009008', N'Blue Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009009', N'Blue Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009010', N'Blue Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009011', N'Blue Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009012', N'Blue Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009013', N'Blue Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009014', N'Blue Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009015', N'White Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009016', N'White Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009017', N'White Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009018', N'White Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009019', N'White Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009020', N'White Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52009021', N'White Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010001', N'Pink Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010002', N'Pink Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010003', N'Pink Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010004', N'Pink Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010005', N'Pink Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010006', N'Pink Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52010007', N'Pink Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011001', N'Brown Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011002', N'Brown Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011003', N'Brown Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011004', N'Brown Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011005', N'Brown Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011006', N'Brown Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52011007', N'Brown Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012001', N'Black Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012002', N'Black Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012003', N'Black Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012004', N'Black Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012005', N'Black Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012006', N'Black Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012007', N'Black Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012008', N'Black Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012009', N'Black Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012010', N'Black Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012011', N'Black Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012012', N'Black Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012013', N'Black Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52012014', N'Black Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013001', N'Pink Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013002', N'Pink Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013003', N'Pink Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013004', N'Pink Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013005', N'Pink Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013006', N'Pink Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52013007', N'Pink Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014001', N'Traditional Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014002', N'Traditional Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014003', N'Traditional Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014004', N'Traditional Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014005', N'Traditional Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014006', N'Traditional Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52014007', N'Traditional Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015001', N'White Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015002', N'White Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015003', N'White Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015004', N'White Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015005', N'White Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015006', N'White Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015007', N'White Cowgirl Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015008', N'White Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015009', N'White Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015010', N'White Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015011', N'White Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015012', N'White Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015013', N'White Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52015014', N'White Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52016001', N'Golden Pattern Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017001', N'Golden Pattern Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017002', N'Golden Pattern Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017003', N'Golden Pattern Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017004', N'Golden Pattern Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017005', N'Golden Pattern Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017006', N'Golden Pattern Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52017007', N'Crimson Conjurer Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018001', N'Crimson Conjurer Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018002', N'Crimson Conjurer Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018003', N'Crimson Conjurer Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018004', N'Crimson Conjurer Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018005', N'Crimson Conjurer Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018006', N'Crimson Conjurer Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52018007', N'Crimson Conjurer Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019001', N'Blue Gold Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019002', N'Blue Gold Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019003', N'Blue Gold Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019004', N'Blue Gold Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019005', N'Blue Gold Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019006', N'Blue Gold Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52019007', N'Blue Gold Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020001', N'Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020002', N'Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020003', N'Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020004', N'Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020005', N'Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020006', N'Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52020007', N'Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021001', N'Winter Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021002', N'Winter Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021003', N'Winter Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021004', N'Winter Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021005', N'Winter Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021006', N'Winter Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52021007', N'Winter Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022001', N'Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022002', N'Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022003', N'Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022004', N'Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022005', N'Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022006', N'Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52022007', N'Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023001', N'Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023002', N'Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023003', N'Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023004', N'Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023005', N'Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023006', N'Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52023007', N'Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024001', N'Green Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024002', N'Green Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024003', N'Green Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024004', N'Green Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024005', N'Green Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024006', N'Green Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52024007', N'Green Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025001', N'Orange Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025002', N'Orange Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025003', N'Orange Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025004', N'Orange Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025005', N'Orange Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025006', N'Orange Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52025007', N'Orange Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026001', N'Pumpkin Witch Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026002', N'Pumpkin Witch Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026003', N'Pumpkin Witch Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026004', N'Pumpkin Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026005', N'Pumpkin Witch Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026006', N'Pumpkin Witch Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52026007', N'Pumpkin Witch Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027001', N'Pink Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027002', N'Pink Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027003', N'Pink Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027004', N'Pink Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027005', N'Pink Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027006', N'Pink Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52027007', N'Pink Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028001', N'Emerald Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028002', N'Emerald Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028003', N'Emerald Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028004', N'Emerald Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028005', N'Emerald Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028006', N'Emerald Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52028007', N'Emerald Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029001', N'Santa Cape [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029002', N'Santa Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029003', N'Santa Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029004', N'Santa Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029005', N'Santa Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029006', N'Santa Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52029007', N'Santa Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030001', N'New Traditional - Shirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030002', N'New Traditional - Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030003', N'New Traditional - Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030004', N'New Traditional - Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030005', N'New Traditional - Top [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030006', N'New Traditional - Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52030007', N'New Traditional - Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031001', N'Yellow Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031002', N'Yellow Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031003', N'Yellow Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031004', N'Yellow Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031005', N'Yellow Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031006', N'Yellow Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52031007', N'Yellow Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032001', N'Blue Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032002', N'Blue Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032003', N'Blue Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032004', N'Blue Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032005', N'Blue Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032006', N'Blue Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52032007', N'Blue Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033001', N'Grey Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033002', N'Grey Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033003', N'Grey Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033004', N'Grey Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033005', N'Grey Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033006', N'Grey Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52033007', N'Grey Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034001', N'Black Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034002', N'Black Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034003', N'Black Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034004', N'Black Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034005', N'Black Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034006', N'Black Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52034007', N'Black Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035001', N'Red Trench Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035002', N'Red Trench Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035003', N'Red Trench Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035004', N'Red Trench Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035005', N'Red Trench Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035006', N'Red Trench Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52035007', N'Red Trench Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036001', N'Emerald Trench Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036002', N'Emerald Trench Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036003', N'Emerald Trench Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036004', N'Emerald Trench Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036005', N'Emerald Trench Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036006', N'Emerald Trench Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52036007', N'Emerald Trench Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037001', N'Blue Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037002', N'Blue Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037003', N'Blue Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037004', N'Blue Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037005', N'Blue Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037006', N'Blue Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52037007', N'Blue Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038001', N'Pink Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038002', N'Pink Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038003', N'Pink Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038004', N'Pink Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038005', N'Pink Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038006', N'Pink Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52038007', N'Pink Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039001', N'Purple Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039002', N'Purple Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039003', N'Purple Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039004', N'Purple Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039005', N'Purple Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039006', N'Purple Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52039007', N'Purple Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040001', N'White Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040002', N'White Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040003', N'White Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040004', N'White Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040005', N'White Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040006', N'White Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52040007', N'White Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041001', N'Scuba Sea Horse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041002', N'Scuba Lower Garment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041003', N'Scuba Flippers [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041004', N'Scuba Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041005', N'Scuba Upper Garment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041006', N'Scuba Goggles [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52041007', N'Scuba Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042001', N'Red Pirate Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042002', N'Red Pirate Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042003', N'Red Pirate Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042004', N'Red Pirate Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042005', N'Red Pirate Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042006', N'Red Pirate Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52042007', N'Red Pirate Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043001', N'Radiant Wedding Costume Adornment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043002', N'Radiant Wedding Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043003', N'Radiant Wedding Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043004', N'Radiant Wedding Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043005', N'Radiant Wedding Costume Dress [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043006', N'Radiant Wedding Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52043007', N'Radiant Wedding Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044001', N'Red Witch Mini Wings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044002', N'Red Witch Dress Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044003', N'Red Witch Mesh Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044004', N'Red Witch Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044005', N'Red Witch Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044006', N'Red Witch Ribbon Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52044007', N'Red Witch Silver Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045001', N'Red Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045002', N'Red Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045003', N'Red Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045004', N'Red Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045005', N'Red Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045006', N'Red Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52045007', N'Red Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046001', N'Blue Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046002', N'Blue Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046003', N'Blue Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046004', N'Blue Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046005', N'Blue Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046006', N'Blue Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52046007', N'Blue Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047001', N'White Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047002', N'White Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047003', N'White Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047004', N'White Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047005', N'White Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047006', N'White Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52047007', N'White Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048001', N'Arctic Fox''s Hood [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048002', N'Arctic Fox''s Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048003', N'Arctic Fox''s Fur Boots [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048004', N'Arctic Fox''s Hand Warmers [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048005', N'Arctic Fox''s Tank Top [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048006', N'Arctic Fox''s Pendant [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52048007', N'Arctic Fox''s Pigtail''s [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049001', N'Beige School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049002', N'Beige School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049003', N'Beige School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049004', N'Beige School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049005', N'Beige School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049006', N'Beige School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52049007', N'Beige School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050001', N'Dark Brown School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050002', N'Dark Brown School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050003', N'Dark Brown School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050004', N'Dark Brown School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050005', N'Dark Brown School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050006', N'Dark Brown School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52050007', N'Dark Brown School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051001', N'Black School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051002', N'Black School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051003', N'Black School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051004', N'Black School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051005', N'Black School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051006', N'Black School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52051007', N'Black School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052001', N'Red Belt Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052002', N'Snake Skin Leggings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052003', N'Black Strap Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052004', N'Black Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052005', N'Red Tight Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052006', N'Red Long Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52052007', N'Snake-Deco Palm Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053001', N'Shining Ark Costume Wing [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053002', N'Shining Ark Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053003', N'Shining Ark Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053004', N'Shining Ark Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053005', N'Shining Ark Costume Dress [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053006', N'Shining Ark Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52053007', N'Shining Ark Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101001', N'Santa Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101002', N'Santa Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101003', N'Santa Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101004', N'Santa Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101005', N'Santa Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101006', N'Santa Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52101007', N'Santa Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102001', N'Blue Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102002', N'Blue Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102003', N'Blue Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102004', N'Blue Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102005', N'Blue Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102006', N'Blue Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52102007', N'Blue Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103001', N'Purple Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103002', N'Purple Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103003', N'Purple Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103004', N'Purple Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103005', N'Purple Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103006', N'Purple Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52103007', N'Purple Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104001', N'Magenta Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104002', N'Magenta Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104003', N'Magenta Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104004', N'Magenta Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104005', N'Magenta Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104006', N'Magenta Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52104007', N'Magenta Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105001', N'Little Blue-Blood Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105002', N'Little Blue-Blood Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105003', N'Little Blue-Blood Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105004', N'Little Blue-Blood Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105005', N'Little Blue-Blood Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105006', N'Little Blue-Blood Bow Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52105007', N'Little Blue-Blood Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106001', N'New Traditional - Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106002', N'New Traditional - Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106003', N'New Traditional - Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106004', N'New Traditional - Bracelet [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106005', N'New Traditional - Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106006', N'New Traditional - Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52106007', N'New Traditional - Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107001', N'Red Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107002', N'Red Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107003', N'Red Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107004', N'Red Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107005', N'Red Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107006', N'Red Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52107007', N'Red Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108001', N'Purple Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108002', N'Purple Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108003', N'Purple Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108004', N'Purple Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108005', N'Purple Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108006', N'Purple Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52108007', N'Purple Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109001', N'Emerald Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109002', N'Emerald Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109003', N'Emerald Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109004', N'Emerald Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109005', N'Emerald Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109006', N'Emerald Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52109007', N'Emerald Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110001', N'Green Young Master Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110002', N'Green Young Master Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110003', N'Green Young Master Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110004', N'Green Young Master Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110005', N'Green Young Master Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110006', N'Green Young Master Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52110007', N'Green Young Master Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111001', N'Red Young Master Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111002', N'Red Young Master Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111003', N'Red Young Master Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111004', N'Red Young Master Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111005', N'Red Young Master Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111006', N'Red Young Master Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52111007', N'Red Young Master Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112001', N'Brown Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112002', N'Brown Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112003', N'Brown Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112004', N'Brown Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112005', N'Brown Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112006', N'Brown Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52112007', N'Brown Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113001', N'Black Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113002', N'Black Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113003', N'Black Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113004', N'Black Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113005', N'Black Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113006', N'Black Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52113007', N'Black Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114001', N'Red Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114002', N'Red Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114003', N'Red Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114004', N'Red Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114005', N'Red Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114006', N'Red Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52114007', N'Red Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115001', N'Black Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115002', N'Black Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115003', N'Black Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115004', N'Black Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115005', N'Black Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115006', N'Black Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52115007', N'Black Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116001', N'Brown Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116002', N'Brown Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116003', N'Brown Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116004', N'Brown Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116005', N'Brown Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116006', N'Brown Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52116007', N'Brown Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117001', N'Red Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117002', N'Red Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117003', N'Red Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117004', N'Red Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117005', N'Red Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117006', N'Red Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52117007', N'Red Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118001', N'Scuba Turtle [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118002', N'Scuba Lower Garment [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118003', N'Scuba Flippers [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118004', N'Scuba Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118005', N'Scuba Upper Garment [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118006', N'Scuba Goggles [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52118007', N'Scuba Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119001', N'Brown Pirate Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119002', N'Brown Pirate Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119003', N'Brown Pirate Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119004', N'Brown Pirate Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119005', N'Brown Pirate Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119006', N'Brown Pirate Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52119007', N'Brown Pirate Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120001', N'Radiant Wedding Costume Tuxedo [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120002', N'Radiant Wedding Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120003', N'Radiant Wedding Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120004', N'Radiant Wedding Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120005', N'Radiant Wedding Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120006', N'Radiant Wedding Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52120007', N'Radiant Wedding Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121001', N'Brown Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121002', N'Brown Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121003', N'Brown Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121004', N'Brown Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121005', N'Brown Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121006', N'Brown Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52121007', N'Brown Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122001', N'Green Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122002', N'Green Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122003', N'Green Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122004', N'Green Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122005', N'Green Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122006', N'Green Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52122007', N'Green Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123001', N'Plum Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123002', N'Plum Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123003', N'Plum Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123004', N'Plum Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123005', N'Plum Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123006', N'Plum Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52123007', N'Plum Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124001', N'Andromeda Star Cloak', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124002', N'Andromeda Slim Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124003', N'Andromeda Pumpkin Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124004', N'Andromeda Pumpkin Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124005', N'Andromeda Pumpkin Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124006', N'Andromeda Muffler', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52124007', N'Andromeda Pumpkin Helmet', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125001', N'Red Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125002', N'Red Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125003', N'Red Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125004', N'Red Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125005', N'Red Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125006', N'Red Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52125007', N'Red Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126001', N'Blue Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126002', N'Blue Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126003', N'Blue Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126004', N'Blue Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126005', N'Blue Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126006', N'Blue Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52126007', N'Blue Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127001', N'White Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127002', N'White Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127003', N'White Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127004', N'White Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127005', N'White Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127006', N'White Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52127007', N'White Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128001', N'Wild Bull''s Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128002', N'Wild Bull''s Leather Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128003', N'Wild Bull''s Woolly Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128004', N'Wild Bull''s Woolly Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128005', N'Wild Bull''s Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128006', N'Wild Bull''s Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52128007', N'Wild Bull''s Cap [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129001', N'Dark Brown School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129002', N'Dark Brown School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129003', N'Dark Brown School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129004', N'Dark Brown School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129005', N'Dark Brown School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129006', N'Dark Brown School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52129007', N'Dark Brown School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130001', N'Pink School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130002', N'Pink School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130003', N'Pink School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130004', N'Pink School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130005', N'Pink School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130006', N'Pink School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52130007', N'Pink School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131001', N'Yellow School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131002', N'Yellow School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131003', N'Yellow School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131004', N'Yellow School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131005', N'Yellow School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131006', N'Yellow School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52131007', N'Yellow School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132001', N'Snake Patterned Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132002', N'Red Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132003', N'Metal Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132004', N'Black Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132005', N'Slim Mesh Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132006', N'Snake Patterned Silver Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'52132007', N'Snake-Deco Red Pointed Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001001', N'Black Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001002', N'Black Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001003', N'Black Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001004', N'Black Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001005', N'Black Oldie Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001006', N'Black Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53001007', N'Black Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002001', N'Grey Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002002', N'Grey Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002003', N'Grey Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002004', N'Grey Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002005', N'Grey Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002006', N'Grey Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53002007', N'Grey Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003001', N'Black Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003002', N'Black Leather Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003003', N'Black Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003004', N'Black Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003005', N'Black Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003006', N'Black Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53003007', N'Black Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004001', N'Navy Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004002', N'Navy Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004003', N'Navy Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004004', N'Navy Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004005', N'Navy Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004006', N'Navy Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53004007', N'Navy Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005001', N'Pin-Striped Punk Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005002', N'Pin-Striped Punk Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005003', N'Pin-Striped Punk Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005004', N'Pin-Striped Punk Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005005', N'Pin-Striped Punk Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005006', N'Pin-Striped Punk Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53005007', N'Pin-Striped Punk Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53006001', N'Danny Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53007001', N'Layered Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53008001', N'Mohican [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009001', N'Purple Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009002', N'Purple Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009003', N'Purple Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009004', N'Purple Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009005', N'Purple Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009006', N'Purple Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53009007', N'Purple Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010001', N'Brown Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010002', N'Brown Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010003', N'Brown Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010004', N'Brown Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010005', N'Brown Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010006', N'Brown Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53010007', N'Brown Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011001', N'Stylish Cellmate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011002', N'Stylish Cellmate Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011003', N'Stylish Cellmate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011004', N'Stylish Cellmate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011005', N'Stylish Cellmate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011006', N'Stylish Cellmate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53011007', N'Stylish Cellmate Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012001', N'Black Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012002', N'Black Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012003', N'Black Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012004', N'Black Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012005', N'Black Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012006', N'Black Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53012007', N'Black Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013001', N'White Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013002', N'White Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013003', N'White Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013004', N'White Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013005', N'White Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013006', N'White Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53013007', N'White Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014001', N'Casual Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014002', N'Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014003', N'Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014004', N'Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014005', N'Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014006', N'Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53014007', N'Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015001', N'Blue Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015002', N'Blue Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015003', N'Blue Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015004', N'Blue Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015005', N'Blue Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015006', N'Blue Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53015007', N'Blue Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016001', N'Pink Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016002', N'Pink Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016003', N'Pink Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016004', N'Pink Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016005', N'Pink Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016006', N'Pink Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53016007', N'Pink Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017001', N'White Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017002', N'White Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017003', N'White Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017004', N'White Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017005', N'White Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017006', N'White Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53017007', N'White Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018001', N'Traditional Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018002', N'Traditional Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018003', N'Traditional Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018004', N'Traditional Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018005', N'Traditional Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018006', N'Traditional Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53018007', N'Traditional Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019001', N'Black Pirate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019002', N'Black Pirate Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019003', N'Black Pirate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019004', N'Black Pirate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019005', N'Black Pirate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019006', N'Black Pirate Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53019007', N'Black Pirate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020001', N'Pale Rider Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020002', N'Pale Rider Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020003', N'Pale Rider Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020004', N'Pale Rider Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020005', N'Pale Rider Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020006', N'Pale Rider Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53020007', N'Pale Rider Bandana [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021001', N'Silver Sage Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021002', N'Silver Sage Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021003', N'Silver Sage Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021004', N'Silver Sage Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021005', N'Silver Sage Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021006', N'Silver Sage Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53021007', N'Silver Sage Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022001', N'Brown Gold Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022002', N'Brown Gold Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022003', N'Brown Gold Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022004', N'Brown Gold Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022005', N'Brown Gold Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022006', N'Brown Gold Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53022007', N'Brown Gold Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023001', N'Blue Gold Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023002', N'Blue Gold Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023003', N'Blue Gold Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023004', N'Blue Gold Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023005', N'Blue Gold Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023006', N'Blue Gold Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53023007', N'Blue Gold Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024001', N'Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024002', N'Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024003', N'Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024004', N'Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024005', N'Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024006', N'Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53024007', N'Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025001', N'Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025002', N'Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025003', N'Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025004', N'Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025005', N'Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025006', N'Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53025007', N'Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026001', N'Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026002', N'Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026003', N'Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026004', N'Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026005', N'Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026006', N'Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53026007', N'Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027001', N'Green Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027002', N'Green Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027003', N'Green Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027004', N'Green Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027005', N'Green Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027006', N'Green Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53027007', N'Green Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028001', N'Orange Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028002', N'Orange Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028003', N'Orange Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028004', N'Orange Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028005', N'Orange Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028006', N'Orange Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53028007', N'Orange Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029001', N'Cipher''s Monster Body [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029002', N'Cipher''s Monster Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029003', N'Cipher''s Monster Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029004', N'Cipher''s Monster Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029005', N'Cipher''s Monster Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029006', N'Cipher''s Monster Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53029007', N'Cipher''s Monster Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030001', N'Yellow Oldie Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030002', N'Yellow Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030003', N'Yellow Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030004', N'Yellow Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030005', N'Yellow Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030006', N'Yellow Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53030007', N'Yellow Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031001', N'Blue Oldie Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031002', N'Blue Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031003', N'Blue Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031004', N'Blue Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031005', N'Blue Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031006', N'Blue Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53031007', N'Blue Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032001', N'Santa Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032002', N'Santa Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032003', N'Santa Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032004', N'Santa Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032005', N'Santa Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032006', N'Santa Scarf [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53032007', N'Santa Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033001', N'New Traditional - Robe [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033002', N'New Traditional - Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033003', N'New Traditional - Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033004', N'New Traditional - Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033005', N'New Traditional - Vest [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033006', N'New Traditional - Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53033007', N'New Traditional - Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034001', N'Black Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034002', N'Black Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034003', N'Black Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034004', N'Black Casual Wristband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034005', N'Black Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034006', N'Black Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53034007', N'Black Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035001', N'Check Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035002', N'Check Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035003', N'Check Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035004', N'Check Casual Wristband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035005', N'Check Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035006', N'Check Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53035007', N'Check Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036001', N'Brown Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036002', N'Brown Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036003', N'Brown Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036004', N'Brown Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036005', N'Brown Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036006', N'Brown Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53036007', N'Brown Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037001', N'White Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037002', N'White Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037003', N'White Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037004', N'White Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037005', N'White Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037006', N'White Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53037007', N'White Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038001', N'Black Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038002', N'Black Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038003', N'Black Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038004', N'Black Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038005', N'Black Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038006', N'Black Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53038007', N'Black Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039001', N'Green Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039002', N'Green Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039003', N'Green Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039004', N'Green Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039005', N'Green Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039006', N'Green Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53039007', N'Green Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040001', N'Purple Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040002', N'Purple Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040003', N'Purple Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040004', N'Purple Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040005', N'Purple Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040006', N'Purple Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53040007', N'Purple Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041001', N'Blue Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041002', N'Blue Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041003', N'Blue Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041004', N'Blue Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041005', N'Blue Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041006', N'Blue Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53041007', N'Blue Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042001', N'Scuba Oxy Cylinders [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042002', N'Scuba Lower Garment [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042003', N'Scuba Flippers [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042004', N'Scuba Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042005', N'Scuba Upper Garment [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042006', N'Scuba Goggles [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53042007', N'Scuba Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043001', N'Radiant Wedding Costume Tuxedo [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043002', N'Radiant Wedding Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043003', N'Radiant Wedding Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043004', N'Radiant Wedding Costume Ring [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043005', N'Radiant Wedding Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043006', N'Radiant Wedding Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53043007', N'Radiant Wedding Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044001', N'Pierrot Agile Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044002', N'Pierrot Striped Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044003', N'Pierrot Star Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044004', N'Pierrot Pumpkin Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044005', N'Pierrot Slim Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044006', N'Pierrot Skeleton Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53044007', N'Pierrot Magician Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045001', N'Red Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045002', N'Red Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045003', N'Red Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045004', N'Red Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045005', N'Red Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045006', N'Red Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53045007', N'Red Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046001', N'Blue Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046002', N'Blue Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046003', N'Blue Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046004', N'Blue Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046005', N'Blue Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046006', N'Blue Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53046007', N'Blue Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047001', N'White Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047002', N'White Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047003', N'White Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047004', N'White Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047005', N'White Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047006', N'White Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53047007', N'White Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048001', N'Black Leopard''s Mantle [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048002', N'Black Leopard''s Chaps [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048003', N'Black Leopard''s Boots [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048004', N'Black Leopard''s Wristlets [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048005', N'Black Leopard''s Chest Straps [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048006', N'Black Leopard''s Clan Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53048007', N'Black Leopard''s Topknot [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049001', N'Indigo School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049002', N'Indigo School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049003', N'Indigo School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049004', N'Indigo School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049005', N'Indigo School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049006', N'Indigo School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53049007', N'Indigo School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050001', N'Green School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050002', N'Green School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050003', N'Green School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050004', N'Green School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050005', N'Green School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050006', N'Green School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53050007', N'Green School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051001', N'Plum School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051002', N'Plum School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051003', N'Plum School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051004', N'Plum School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051005', N'Plum School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051006', N'Plum School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53051007', N'Plum School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052001', N'Red Deviant Crease Lined Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052002', N'Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052003', N'Black Walker Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052004', N'Snake Patterned Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052005', N'V-neck T-Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052006', N'Snake Patterned Long Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53052007', N'Snake-Deco Tied Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053001', N'Shining Ark Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053002', N'Shining Ark Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053003', N'Shining Ark Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053004', N'Shining Ark Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053005', N'Shining Ark Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053006', N'Shining Ark Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53053007', N'Shining Ark Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101001', N'Plum Bird Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101002', N'Plum Bird Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101003', N'Plum Bird Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101004', N'Plum Bird Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101005', N'Plum Bird Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101006', N'Plum Bird Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53101007', N'Plum Bird Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102001', N'Sky Blue Bird Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102002', N'Sky Blue Bird Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102003', N'Sky Blue Bird Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102004', N'Sky Blue Bird Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102005', N'Sky Blue Bird Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102006', N'Sky Blue Bird Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53102007', N'Sky Blue Bird Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103001', N'Midnight Green Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103002', N'Midnight Green Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103003', N'Midnight Green Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103004', N'Midnight Green Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103005', N'Midnight Green Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103006', N'Midnight Green Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53103007', N'Midnight Green Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104001', N'Red Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104002', N'Red Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104003', N'Red Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104004', N'Red Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104005', N'Red Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104006', N'Red Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53104007', N'Red Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105001', N'Black Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105002', N'Black Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105003', N'Black Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105004', N'Black Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105005', N'Black Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105006', N'Black Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53105007', N'Black Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106001', N'Yellow Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106002', N'Yellow Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106003', N'Yellow Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106004', N'Yellow Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106005', N'Yellow Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106006', N'Yellow Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53106007', N'Yellow Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107001', N'Cursed Soul Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107002', N'Cursed Soul Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107003', N'Cursed Soul Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107004', N'Cursed Soul Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107005', N'Cursed Soul Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107006', N'Cursed Soul Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53107007', N'Cursed Soul Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108001', N'Santa Cape [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108002', N'Santa Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108003', N'Santa Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108004', N'Santa Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108005', N'Santa Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108006', N'Santa Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53108007', N'Santa Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109001', N'New Traditional - Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109002', N'New Traditional - Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109003', N'New Traditional - Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109004', N'New Traditional - Top [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109005', N'New Traditional - Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109006', N'New Traditional - Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53109007', N'New Traditional - Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110001', N'Red Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110002', N'Red Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110003', N'Red Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110004', N'Red Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110005', N'Red Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110006', N'Red Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53110007', N'Red Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111001', N'Blue Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111002', N'Blue Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111003', N'Blue Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111004', N'Blue Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111005', N'Blue Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111006', N'Blue Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53111007', N'Blue Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112001', N'Pink Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112002', N'Pink Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112003', N'Pink Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112004', N'Pink Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112005', N'Pink Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112006', N'Pink Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53112007', N'Pink Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113001', N'Pink Sagunja[Plum] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113002', N'Pink Sagunja[Plum] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113003', N'Pink Sagunja[Plum] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113004', N'Pink Sagunja[Plum] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113005', N'Pink Sagunja[Plum] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113006', N'Pink Sagunja[Plum] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53113007', N'Pink Sagunja[Plum] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114001', N'Yellow Sagunja[Chrysanthemum] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114002', N'Yellow Sagunja[Chrysanthemum] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114003', N'Yellow Sagunja[Chrysanthemum] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114004', N'Yellow Sagunja[Chrysanthemum] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114005', N'Yellow Sagunja[Chrysanthemum] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114006', N'Yellow Sagunja[Chrysanthemum] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53114007', N'Yellow Sagunja[Chrysanthemum] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115001', N'Green Sagunja[Bamboo] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115002', N'Green Sagunja[Bamboo] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115003', N'Green Sagunja[Bamboo] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115004', N'Green Sagunja[Bamboo] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115005', N'Green Sagunja[Bamboo] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115006', N'Green Sagunja[Bamboo] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53115007', N'Green Sagunja[Bamboo] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116001', N'Purple Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116002', N'Purple Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116003', N'Purple Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116004', N'Purple Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116005', N'Purple Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116006', N'Purple Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53116007', N'Purple Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117001', N'Emerald Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117002', N'Emerald Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117003', N'Emerald Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117004', N'Emerald Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117005', N'Emerald Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117006', N'Emerald Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53117007', N'Emerald Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118001', N'Red Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118002', N'Red Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118003', N'Red Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118004', N'Red Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118005', N'Red Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118006', N'Red Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53118007', N'Red Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119001', N'Brown Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119002', N'Brown Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119003', N'Brown Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119004', N'Brown Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119005', N'Brown Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119006', N'Brown Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53119007', N'Brown Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120001', N'Emerald Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120002', N'Emerald Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120003', N'Emerald Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120004', N'Emerald Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120005', N'Emerald Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120006', N'Emerald Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53120007', N'Emerald Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121001', N'Purple Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121002', N'Purple Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121003', N'Purple Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121004', N'Purple Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121005', N'Purple Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121006', N'Purple Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53121007', N'Purple Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122001', N'Scuba Salamander [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122002', N'Scuba Flippers [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122003', N'Scuba Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122004', N'Scuba Diving Suit [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122005', N'Scuba Goggles [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122006', N'Scuba Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53122007', N'Scuba Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123001', N'Blue Pirate Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123002', N'Blue Pirate Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123003', N'Blue Pirate Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123004', N'Blue Pirate Costume Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123005', N'Blue Pirate Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123006', N'Blue Pirate Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53123007', N'Blue Pirate Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124001', N'Emerald Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124002', N'Emerald Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124003', N'Emerald Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124004', N'Emerald Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124005', N'Emerald Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124006', N'Emerald Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53124007', N'Emerald Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125001', N'Purple Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125002', N'Purple Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125003', N'Purple Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125004', N'Purple Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125005', N'Purple Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125006', N'Purple Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53125007', N'Purple Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126001', N'Pink Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126002', N'Pink Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126003', N'Pink Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126004', N'Pink Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126005', N'Pink Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126006', N'Pink Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53126007', N'Pink Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127001', N'Radiant Wedding Costume Adornment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127002', N'Radiant Wedding Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127003', N'Radiant Wedding Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127004', N'Radiant Wedding Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127005', N'Radiant Wedding Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127006', N'Radiant Wedding Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53127007', N'Radiant Wedding Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128001', N'Pumpkin Girl Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128002', N'Pumpkin Girl Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128003', N'Pumpkin Girl Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128004', N'Pumpkin Girl Blouse', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128005', N'Pumpkin Girl Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128006', N'Pumpkin Girl Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53128007', N'Pumpkin Girl Earrings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129001', N'Red Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129002', N'Red Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129003', N'Red Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129004', N'Red Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129005', N'Red Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129006', N'Red Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53129007', N'Red Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130001', N'Blue Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130002', N'Blue Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130003', N'Blue Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130004', N'Blue Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130005', N'Blue Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130006', N'Blue Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53130007', N'Blue Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131001', N'White Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131002', N'White Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131003', N'White Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131004', N'White Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131005', N'White Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131006', N'White Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53131007', N'White Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132001', N'Sly Coyote''s Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132002', N'Sly Coyote''s Shell-Toe Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132003', N'Sly Coyote''s Fur Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132004', N'Sly Coyote''s Fur Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132005', N'Sly Coyote''s Talisman [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132006', N'Sly Coyote''s Tail [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53132007', N'Sly Coyote''s Pendant [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133001', N'Pink School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133002', N'Pink School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133003', N'Pink School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133004', N'Pink School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133005', N'Pink School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133006', N'Pink School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53133007', N'Pink School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134001', N'Brown School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134002', N'Brown School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134003', N'Brown School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134004', N'Brown School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134005', N'Brown School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134006', N'Brown School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53134007', N'Brown School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135001', N'White School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135002', N'White School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135003', N'White School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135004', N'White School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135005', N'White School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135006', N'White School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53135007', N'White School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136001', N'Gold Short Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136002', N'Mesh Leggings Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136003', N'Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136004', N'Metal Garment Set', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136005', N'Gold Snake Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136006', N'Indigo Bridge Snake-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53136007', N'Gold Snake Earrings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137001', N'Shining Ark Costume Wing [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137002', N'Shining Ark Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137003', N'Shining Ark Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137004', N'Shining Ark Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137005', N'Shining Ark Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137006', N'Shining Ark Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'53137007', N'Shining Ark Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001001', N'Black Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001002', N'Black Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001003', N'Black Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001004', N'Black Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001005', N'Black Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001006', N'Black Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54001007', N'Black Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002001', N'Grey Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002002', N'Grey Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002003', N'Grey Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002004', N'Grey Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002005', N'Grey Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002006', N'Grey Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54002007', N'Grey Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003001', N'Navy Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003002', N'Navy Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003003', N'Navy Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003004', N'Navy Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003005', N'Navy Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003006', N'Navy Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54003007', N'Navy Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004001', N'Brown Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004002', N'Brown Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004003', N'Brown Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004004', N'Brown Striped Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004005', N'Brown Striped Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004006', N'Brown Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54004007', N'Brown Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005001', N'Violet Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005002', N'Violet Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005003', N'Violet Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005004', N'Violet Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005005', N'Violet Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005006', N'Violet Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54005007', N'Violet Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006001', N'Brown Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006002', N'Brown Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006003', N'Brown Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006004', N'Brown Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006005', N'Brown Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006006', N'Brown Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54006007', N'Brown Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007001', N'Blue Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007002', N'Blue Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007003', N'Blue Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007004', N'Blue Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007005', N'Blue Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007006', N'Blue Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54007007', N'Blue Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008001', N'Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008002', N'Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008003', N'Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008004', N'Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008005', N'Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008006', N'Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54008007', N'Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009001', N'Blue Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009002', N'Blue Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009003', N'Blue Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009004', N'Blue Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009005', N'Blue Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009006', N'Blue Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54009007', N'Blue Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010001', N'Pink Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010002', N'Pink Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010003', N'Pink Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010004', N'Pink Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010005', N'Pink Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010006', N'Pink Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54010007', N'Pink Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011001', N'White Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011002', N'White Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011003', N'White Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011004', N'White Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011005', N'White Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011006', N'White Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54011007', N'White Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012001', N'White Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012002', N'White Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012003', N'White Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012004', N'White Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012005', N'White Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012006', N'White Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54012007', N'White Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013001', N'White Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013002', N'White Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013003', N'White Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013004', N'White Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013005', N'White Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013006', N'White Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54013007', N'White Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014001', N'Traditional Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014002', N'Traditional Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014003', N'Traditional Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014004', N'Traditional Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014005', N'Traditional Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014006', N'Traditional Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54014007', N'Traditional Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015001', N'Red Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015002', N'Red Nun Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015003', N'Red Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015004', N'Red Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015005', N'Red Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015006', N'Red Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54015007', N'Red Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016001', N'White Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016002', N'White Nun Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016003', N'White Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016004', N'White Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016005', N'White Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016006', N'White Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54016007', N'White Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017001', N'Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017002', N'Nun Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017003', N'Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017004', N'Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017005', N'Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017006', N'Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54017007', N'Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018001', N'Chinese Dress Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018002', N'Chinese Dress Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018003', N'Chinese Dress Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018004', N'Chinese Dress Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018005', N'Chinese Dress Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018006', N'Chinese Dress Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54018007', N'Chinese Dress Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019001', N'Scarlet Chic Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019002', N'Scarlet Chic Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019003', N'Scarlet Chic Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019004', N'Scarlet Chic Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019005', N'Scarlet Chic Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019006', N'Scarlet Chic Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54019007', N'Scarlet Chic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020001', N'Brown Pirate Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020002', N'Brown Pirate Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020003', N'Brown Pirate Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020004', N'Brown Pirate Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020005', N'Brown Pirate Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020006', N'Brown Pirate Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54020007', N'Brown Pirate Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021001', N'Vice-Minister Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021002', N'Vice-Minister Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021003', N'Vice-Minister Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021004', N'Vice-Minister Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021005', N'Vice-Minister Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021006', N'Vice-Minister Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54021007', N'Vice-Minister Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022001', N'Navy Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022002', N'Navy Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022003', N'Navy Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022004', N'Navy Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022005', N'Navy Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022006', N'Navy Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54022007', N'Navy Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023001', N'Green Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023002', N'Green Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023003', N'Green Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023004', N'Green Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023005', N'Green Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023006', N'Green Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54023007', N'Green Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024001', N'Orange Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024002', N'Orange Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024003', N'Orange Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024004', N'Orange Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024005', N'Orange Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024006', N'Orange Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54024007', N'Orange Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025001', N'Feral Feline Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025002', N'Feral Feline Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025003', N'Feral Feline Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025004', N'Feral Feline Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025005', N'Feral Feline Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025006', N'Feral Feline Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54025007', N'Feral Feline Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026001', N'Purple Fashion Icon Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026002', N'Purple Fashion Icon Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026003', N'Purple Fashion Icon Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026004', N'Purple Fashion Icon Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026005', N'Purple Fashion Icon Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026006', N'Purple Fashion Icon Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54026007', N'Purple Fashion Icon Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027001', N'Blue Fashion Icon Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027002', N'Blue Fashion Icon Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027003', N'Blue Fashion Icon Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027004', N'Blue Fashion Icon Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027005', N'Blue Fashion Icon Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027006', N'Blue Fashion Icon Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54027007', N'Blue Fashion Icon Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028001', N'Santa Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028002', N'Santa Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028003', N'Santa Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028004', N'Santa Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028005', N'Santa Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028006', N'Santa Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54028007', N'Santa Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029001', N'New Traditional - Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029002', N'New Traditional - Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029003', N'New Traditional - Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029004', N'New Traditional - Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029005', N'New Traditional - Top [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029006', N'New Traditional - Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54029007', N'New Traditional - Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030001', N'Pink Undersecretary Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030002', N'Pink Undersecretary Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030003', N'Pink Undersecretary Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030004', N'Pink Undersecretary Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030005', N'Pink Undersecretary Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030006', N'Pink Undersecretary Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54030007', N'Pink Undersecretary Hat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031001', N'Emerald Undersecretary Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031002', N'Emerald Undersecretary Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031003', N'Emerald Undersecretary Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031004', N'Emerald Undersecretary Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031005', N'Emerald Undersecretary Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031006', N'Emerald Undersecretary Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54031007', N'Emerald Undersecretary Hat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032001', N'Red Chinese Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032002', N'Red Chinese Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032003', N'Red Chinese Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032004', N'Red Chinese Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032005', N'Red Chinese Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032006', N'Red Chinese Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54032007', N'Red Chinese Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033001', N'White Chinese Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033002', N'White Chinese Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033003', N'White Chinese Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033004', N'White Chinese Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033005', N'White Chinese Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033006', N'White Chinese Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54033007', N'White Chinese Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034001', N'Orange Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034002', N'Orange Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034003', N'Orange Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034004', N'Orange Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034005', N'Orange Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034006', N'Orange Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54034007', N'Orange Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035001', N'Sky Blue Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035002', N'Sky Blue Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035003', N'Sky Blue Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035004', N'Sky Blue Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035005', N'Sky Blue Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035006', N'Sky Blue Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54035007', N'Sky Blue Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036001', N'Scuba Otter [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036002', N'Scuba Lower Garment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036003', N'Scuba Flippers [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036004', N'Scuba Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036005', N'Scuba Upper Garment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036006', N'Scuba Goggles [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54036007', N'Scuba Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037001', N'Radiant Wedding Costume Adornment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037002', N'Radiant Wedding Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037003', N'Radiant Wedding Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037004', N'Radiant Wedding Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037005', N'Radiant Wedding Costume Dress [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037006', N'Radiant Wedding Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54037007', N'Radiant Wedding Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038001', N'Skull Rider Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038002', N'Skull Rider Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038003', N'Skull Rider Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038004', N'Skull Rider Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038005', N'Skull Rider T-shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038006', N'Skull Rider Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54038007', N'Skull Rider Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039001', N'Red Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039002', N'Red Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039003', N'Red Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039004', N'Red Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039005', N'Red Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039006', N'Red Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54039007', N'Red Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040001', N'Blue Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040002', N'Blue Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040003', N'Blue Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040004', N'Blue Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040005', N'Blue Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040006', N'Blue Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54040007', N'Blue Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041001', N'White Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041002', N'White Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041003', N'White Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041004', N'White Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041005', N'White Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041006', N'White Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54041007', N'White Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042001', N'White Phoenix''s Wings [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042002', N'White Phoenix''s Tail Feathers [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042003', N'White Phoenix''s Boots [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042004', N'White Phoenix''s Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042005', N'White Phoenix''s Fur Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042006', N'White Phoenix''s Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54042007', N'White Phoenix''s Plume [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043001', N'Yellow School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043002', N'Yellow School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043003', N'Yellow School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043004', N'Yellow School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043005', N'Yellow School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043006', N'Yellow School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54043007', N'Yellow School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044001', N'Red School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044002', N'Red School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044003', N'Red School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044004', N'Red School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044005', N'Red School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044006', N'Red School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54044007', N'Red School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045001', N'Black School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045002', N'Black School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045003', N'Black School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045004', N'Black School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045005', N'Black School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045006', N'Black School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54045007', N'Black School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046001', N'Snake-Deco Mesh Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046002', N'Deviant Crease Lined Short Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046003', N'Deviant Crease Lined Gold Ornament Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046004', N'Red Frill Arm Warmer', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046005', N'Snake Patterned Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046006', N'Double Amber Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54046007', N'Snake-Deco Long Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047001', N'Shining Ark Costume Wing [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047002', N'Shining Ark Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047003', N'Shining Ark Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047004', N'Shining Ark Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047005', N'Shining Ark Costume Dress [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047006', N'Shining Ark Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54047007', N'Shining Ark Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101001', N'Dictator''s Costume(B) - Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101002', N'Black Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101003', N'Black Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101004', N'Black Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101005', N'Black Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101006', N'Black Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54101007', N'Black Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102001', N'Brown Dictator Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102002', N'Brown Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102003', N'Brown Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102004', N'Brown Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102005', N'Brown Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102006', N'Brown Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54102007', N'Brown Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103001', N'Brown Dictator Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103002', N'Brown Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103003', N'Brown Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103004', N'Brown Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103005', N'Brown Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103006', N'Brown Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54103007', N'Brown Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104001', N'Orange Color Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104002', N'Orange Color Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104003', N'Orange Color Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104004', N'Orange Color Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104005', N'Orange Color Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104006', N'Orange Color Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54104007', N'Orange Color Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105001', N'Blue Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105002', N'Blue Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105003', N'Blue Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105004', N'Blue Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105005', N'Blue Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105006', N'Blue Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54105007', N'Blue Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106001', N'Gray Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106002', N'Gray Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106003', N'Gray Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106004', N'Gray Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106005', N'Gray Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106006', N'Gray Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54106007', N'Gray Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107001', N'Radiant Wedding Costume Tuxedo [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107002', N'Radiant Wedding Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107003', N'Radiant Wedding Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107004', N'Radiant Wedding Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107005', N'Radiant Wedding Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107006', N'Radiant Wedding Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54107007', N'Radiant Wedding Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108001', N'Ghost Hunter Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108002', N'Ghost Hunter Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108003', N'Ghost Hunter Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108004', N'Ghost Hunter Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108005', N'Ghost Hunter Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108006', N'Ghost Hunter Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54108007', N'Ghost Hunter Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109001', N'Red Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109002', N'Red Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109003', N'Red Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109004', N'Red Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109005', N'Red Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109006', N'Red Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54109007', N'Red Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110001', N'Blue Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110002', N'Blue Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110003', N'Blue Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110004', N'Blue Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110005', N'Blue Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110006', N'Blue Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54110007', N'Blue Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111001', N'White Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111002', N'White Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111003', N'White Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111004', N'White Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111005', N'White Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111006', N'White Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54111007', N'White Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112001', N'Orange Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112002', N'Orange Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112003', N'Orange Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112004', N'Orange Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112005', N'Orange Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112006', N'Orange Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54112007', N'Orange Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113001', N'White Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113002', N'White Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113003', N'White Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113004', N'White Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113005', N'White Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113006', N'White Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54113007', N'White Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114001', N'Purple Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114002', N'Purple Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114003', N'Purple Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114004', N'Purple Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114005', N'Purple Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114006', N'Purple Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54114007', N'Purple Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115001', N'White School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115002', N'White School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115003', N'White School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115004', N'White School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115005', N'White School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115006', N'White School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54115007', N'White School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116001', N'Bluish Green School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116002', N'Bluish Green School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116003', N'Bluish Green School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116004', N'Bluish Green School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116005', N'Bluish Green School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116006', N'Bluish Green School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54116007', N'Bluish Green School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117001', N'Black School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117002', N'Black School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117003', N'Black School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117004', N'Black School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117005', N'Black School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117006', N'Black School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54117007', N'Black School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118001', N'Snake Patterned Long Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118002', N'Snake Patterned Red Belt Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118003', N'Snake Patterned Long Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118004', N'Snake Patterned Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118005', N'Snake Pattered Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118006', N'Emerald Snake Patterned Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54118007', N'Black Two Block Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119001', N'Shining Ark Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119002', N'Shining Ark Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119003', N'Shining Ark Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119004', N'Shining Ark Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119005', N'Shining Ark Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119006', N'Shining Ark Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'54119007', N'Shining Ark Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001001', N'Golden Deacon Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001002', N'Golden Deacon Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001003', N'Golden Deacon Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001004', N'Golden Deacon Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001005', N'Golden Deacon Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001006', N'Golden Deacon Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61001007', N'Golden Deacon Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002001', N'Grey Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002002', N'Grey Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002003', N'Grey Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002004', N'Grey Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002005', N'Grey Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002006', N'Grey Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61002007', N'Grey Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003001', N'Black Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003002', N'Black Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003003', N'Black Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003004', N'Black Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003005', N'Black Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003006', N'Black Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61003007', N'Black Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004001', N'Navy Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004002', N'Navy Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004003', N'Navy Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004004', N'Navy Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004005', N'Navy Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004006', N'Navy Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61004007', N'Navy Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005001', N'Imperial Officer Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005002', N'Imperial Officer Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005003', N'Imperial Officer Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005004', N'Imperial Officer Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005005', N'Imperial Officer Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005006', N'Imperial Officer Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61005007', N'Imperial Officer Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61006001', N'Danny Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61007001', N'Mohican [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008001', N'Purplish Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008002', N'Purplish Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008003', N'Purplish Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008004', N'Purplish Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008005', N'Purplish Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008006', N'Purplish Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61008007', N'Purplish Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009001', N'Brown Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009002', N'Brown Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009003', N'Brown Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009004', N'Brown Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009005', N'Brown Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009006', N'Brown Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61009007', N'Brown Cowboy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010001', N'Black Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010002', N'Black Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010003', N'Black Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010004', N'Black Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010005', N'Black Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010006', N'Black Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61010007', N'Black Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61011001', N'Shaggy Cut [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012001', N'Purple Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012002', N'Purple Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012003', N'Purple Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012004', N'Purple Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012005', N'Purple Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012006', N'Purple Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61012007', N'Purple Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013001', N'Blue Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013002', N'Blue Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013003', N'Blue Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013004', N'Blue Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013005', N'Blue Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013006', N'Blue Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61013007', N'Blue Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014001', N'Pink Dining Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014002', N'Pink Dining Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014003', N'Pink Dining Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014004', N'Pink Dining Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014005', N'Pink Dining Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014006', N'Pink Dining Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61014007', N'Pink Dining Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015001', N'White Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015002', N'White Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015003', N'White Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015004', N'White Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015005', N'White Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015006', N'White Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61015007', N'White Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016001', N'Traditional Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016002', N'Traditional Head [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016003', N'Traditional Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016004', N'Traditional Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016005', N'Traditional Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016006', N'Traditional Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61016007', N'Traditional Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017001', N'Indigo Pirate Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017002', N'Indigo Pirate Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017003', N'Indigo Pirate Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017004', N'Indigo Pirate Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017005', N'Indigo Pirate Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017006', N'Indigo Pirate Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61017007', N'Indigo Pirate Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018001', N'White Magician Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018002', N'White Magician Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018003', N'White Magician Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018004', N'White Magician Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018005', N'White Magician Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018006', N'White Magician Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018007', N'White Magician Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018008', N'White Cowboy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018009', N'White Cowboy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018010', N'White Cowboy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018011', N'White Cowboy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018012', N'White Cowboy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018013', N'White Cowboy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61018014', N'White Cowboy Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019001', N'Golden Pattern Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019002', N'Golden Pattern Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019003', N'Golden Pattern Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019004', N'Golden Pattern Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019005', N'Golden Pattern Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019006', N'Golden Pattern Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61019007', N'Golden Pattern Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020001', N'Blue Gold Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020002', N'Blue Gold Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020003', N'Blue Gold Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020004', N'Blue Gold Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020005', N'Blue Gold Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020006', N'Blue Gold Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61020007', N'Blue Gold Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021001', N'Red Gold Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021002', N'Red Gold Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021003', N'Red Gold Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021004', N'Red Gold Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021005', N'Red Gold Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021006', N'Red Gold Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61021007', N'Red Gold Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022001', N'Violent Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022002', N'Violent Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022003', N'Violent Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022004', N'Violent Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022005', N'Violent Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022006', N'Violent Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61022007', N'Violent Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023001', N'Golden Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023002', N'Golden Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023003', N'Golden Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023004', N'Golden Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023005', N'Golden Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023006', N'Golden Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61023007', N'Golden Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024001', N'Brown Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024002', N'Brown Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024003', N'Brown Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024004', N'Brown Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024005', N'Brown Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024006', N'Brown Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61024007', N'Brown Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025001', N'Green Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025002', N'Green Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025003', N'Green Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025004', N'Green Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025005', N'Green Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025006', N'Green Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61025007', N'Green Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026001', N'Orange Fancy Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026002', N'Orange Fancy Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026003', N'Orange Fancy Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026004', N'Orange Fancy Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026005', N'Orange Fancy Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026006', N'Orange Fancy Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61026007', N'Orange Fancy Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027001', N'Masquerade Ball Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027002', N'Masquerade Ball Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027003', N'Masquerade Ball Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027004', N'Masquerade Ball Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027005', N'Masquerade Ball Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027006', N'Masquerade Ball Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61027007', N'Masquerade Ball Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028001', N'Orange Chain Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028002', N'Orange Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028003', N'Orange Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028004', N'Orange Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028005', N'Orange Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028006', N'Orange Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61028007', N'Orange Chain Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029001', N'Pinstripe Chain Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029002', N'Pinstripe Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029003', N'Pinstripe Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029004', N'Pinstripe Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029005', N'Pinstripe Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029006', N'Pinstripe Chain Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61029007', N'Pinstripe Chain Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030001', N'Santa Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030002', N'Santa Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030003', N'Santa Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030004', N'Santa Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030005', N'Santa Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030006', N'Santa Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61030007', N'Santa Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031001', N'New Traditional Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031002', N'New Traditional Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031003', N'New Traditional Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031004', N'New Traditional Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031005', N'New Traditional Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031006', N'New Traditional Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61031007', N'New Traditional Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032001', N'Red Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032002', N'Red Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032003', N'Red Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032004', N'Red Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032005', N'Red Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032006', N'Red Chain Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61032007', N'Red Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033001', N'Black Chain Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033002', N'Black Chain Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033003', N'Black Chain Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033004', N'Black Chain Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033005', N'Black Chain Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033006', N'Black Chain Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61033007', N'Black Chain Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034001', N'White Party Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034002', N'White Party Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034003', N'White Party Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034004', N'White Party Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034005', N'White Party Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034006', N'White Party Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61034007', N'White Party Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035001', N'Purplish Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035002', N'Purplish Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035003', N'Purplish Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035004', N'Purplish Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035005', N'Purplish Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035006', N'Purplish Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61035007', N'Purplish Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036001', N'Brown Cross Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036002', N'Brown Cross Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036003', N'Brown Cross Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036004', N'Brown Cross Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036005', N'Brown Cross Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036006', N'Brown Cross Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61036007', N'Brown Cross Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037001', N'Pied Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037002', N'Pied Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037003', N'Pied Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037004', N'Pied Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037005', N'Pied Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037006', N'Pied Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61037007', N'Pied Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038001', N'Black Mafia Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038002', N'Black Mafia Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038003', N'Black Mafia Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038004', N'Black Mafia Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038005', N'Black Mafia Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038006', N'Black Mafia Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61038007', N'Black Mafia Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039001', N'Red Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039002', N'Red Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039003', N'Red Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039004', N'Red Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039005', N'Red Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039006', N'Red Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61039007', N'Red Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040001', N'Blue Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040002', N'Blue Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040003', N'Blue Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040004', N'Blue Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040005', N'Blue Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040006', N'Blue Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61040007', N'Blue Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041001', N'Dark Green Hermit Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041002', N'Dark Green Hermit Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041003', N'Dark Green Hermit Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041004', N'Dark Green Hermit Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041005', N'Dark Green Hermit Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041006', N'Dark Green Hermit Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61041007', N'Dark Green Hermit Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042001', N'Purple Chain Dress Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042002', N'Purple Chain Dress Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042003', N'Purple Chain Dress Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042004', N'Purple Chain Dress Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042005', N'Purple Chain Dress Shirts [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042006', N'Purple Chain Dress Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61042007', N'Purple Chain Dress Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043001', N'Scuba Octopus [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043002', N'Scuba Lower Garment [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043003', N'Scuba Flippers [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043004', N'Scuba Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043005', N'Scuba Upper Garment [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043006', N'Scuba Goggles [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61043007', N'Scuba Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044001', N'Red Gold Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044002', N'Red Gold Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044003', N'Red Gold Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044004', N'Red Gold Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044005', N'Red Gold Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044006', N'Red Gold Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61044007', N'Red Gold Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045001', N'Radiant Wedding Costume Tuxedo [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045002', N'Radiant Wedding Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045003', N'Radiant Wedding Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045004', N'Radiant Wedding Costume Watch [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045005', N'Radiant Wedding Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045006', N'Radiant Wedding Costume Necklace [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61045007', N'Radiant Wedding Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046001', N'Devil Prince Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046002', N'Devil Prince Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046003', N'Devil Prince Leather Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046004', N'Devil Prince Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046005', N'Devil Prince Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046006', N'Devil Prince Necktie', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61046007', N'Devil Prince Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047001', N'Red Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047002', N'Red Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047003', N'Red Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047004', N'Red Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047005', N'Red Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047006', N'Red Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61047007', N'Red Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048001', N'Blue Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048002', N'Blue Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048003', N'Blue Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048004', N'Blue Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048005', N'Blue Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048006', N'Blue Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61048007', N'Blue Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049001', N'White Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049002', N'White Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049003', N'White Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049004', N'White Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049005', N'White Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049006', N'White Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61049007', N'White Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050001', N'Indigo Pirate Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050002', N'Indigo Pirate Hat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050003', N'Indigo Pirate Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050004', N'Indigo Pirate Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050005', N'Indigo Pirate Coat [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050006', N'Indigo Pirate Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61050007', N'Indigo Pirate Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051001', N'Snow Wolf''s Cloak [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051002', N'Snow Wolf''s Fur Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051003', N'Snow Wolf''s Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051004', N'Snow Wolf''s Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051005', N'Snow Wolf''s Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051006', N'Snow Wolf''s Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61051007', N'Snow Wolf''s Topknot [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052001', N'White School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052002', N'White School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052003', N'White School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052004', N'White School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052005', N'White School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052006', N'White School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61052007', N'White School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053001', N'Purple School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053002', N'Purple School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053003', N'Purple School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053004', N'Purple School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053005', N'Purple School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053006', N'Purple School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61053007', N'Purple School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054001', N'Brown School Uniform Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054002', N'Brown School Uniform Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054003', N'Brown School Uniform Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054004', N'Brown School Uniform Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054005', N'Brown School Uniform Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054006', N'Brown School Uniform Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61054007', N'Brown School Uniform Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055001', N'Snake Patterned Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055002', N'Gold Chain-Deco Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055003', N'Red Deviant Crease Lined Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055004', N'Black Snake Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055005', N'Deviant Crease Lined Red Slim Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055006', N'Metal Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61055007', N'Sharp Black Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056001', N'Shining Ark Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056002', N'Shining Ark Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056003', N'Shining Ark Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056004', N'Shining Ark Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056005', N'Shining Ark Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056006', N'Shining Ark Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61056007', N'Shining Ark Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057001', N'White Flaming Costume Jacket [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057002', N'White Flaming Costume Pants [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057003', N'White Flaming Costume Shoes [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057004', N'White Flaming Costume Gloves [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057005', N'White Flaming Costume Shirt [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057006', N'White Flaming Costume Tie [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61057007', N'White Flaming Costume Hair [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101001', N'Black Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101002', N'Black Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101003', N'Black Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101004', N'Black Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101005', N'Black Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101006', N'Black Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61101007', N'Black Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102001', N'White Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102002', N'White Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102003', N'White Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102004', N'White Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102005', N'White Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102006', N'White Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61102007', N'White Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103001', N'Red Queen Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103002', N'Red Queen Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103003', N'Red Queen Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103004', N'Red Queen Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103005', N'Red Queen Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103006', N'Red Queen Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61103007', N'Red Queen Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104001', N'Brown Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104002', N'Brown Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104003', N'Brown Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104004', N'Brown Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104005', N'Brown Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104006', N'Brown Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61104007', N'Brown Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105001', N'White Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105002', N'White Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105003', N'White Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105004', N'White Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105005', N'White Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105006', N'White Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61105007', N'White Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106001', N'Green Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106002', N'Green Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106003', N'Green Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106004', N'Green Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106005', N'Green Military Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106006', N'Green Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61106007', N'Green Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107001', N'Santa Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107002', N'Santa Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107003', N'Santa Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107004', N'Santa Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107005', N'Santa Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107006', N'Santa Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61107007', N'Santa Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108001', N'Navy Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108002', N'Navy Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108003', N'Navy Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108004', N'Navy Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108005', N'Navy Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108006', N'Navy Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61108007', N'Navy Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109001', N'Green Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109002', N'Green Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109003', N'Green Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109004', N'Green Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109005', N'Green Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109006', N'Green Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61109007', N'Green Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110001', N'Violet Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110002', N'Violet Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110003', N'Violet Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110004', N'Violet Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110005', N'Violet Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110006', N'Violet Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61110007', N'Violet Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111001', N'New Traditional Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111002', N'New Traditional Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111003', N'New Traditional Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111004', N'New Traditional Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111005', N'New Traditional Top [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111006', N'New Traditional Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61111007', N'New Traditional Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112001', N'Black Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112002', N'Black Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112003', N'Black Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112004', N'Black Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112005', N'Black Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112006', N'Black Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61112007', N'Black Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113001', N'Red Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113002', N'Red Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113003', N'Red Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113004', N'Red Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113005', N'Red Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113006', N'Red Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61113007', N'Red Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114001', N'Emerald Gangster Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114002', N'Emerald Gangster Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114003', N'Emerald Gangster Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114004', N'Emerald Gangster Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114005', N'Emerald Gangster Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114006', N'Emerald Gangster Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61114007', N'Emerald Gangster Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115001', N'Pink Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115002', N'Pink Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115003', N'Pink Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115004', N'Pink Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115005', N'Pink Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115006', N'Pink Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61115007', N'Pink Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116001', N'Blue Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116002', N'Blue Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116003', N'Blue Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116004', N'Blue Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116005', N'Blue Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116006', N'Blue Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61116007', N'Blue Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117001', N'Yellow Lace Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117002', N'Yellow Lace Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117003', N'Yellow Lace Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117004', N'Yellow Lace Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117005', N'Yellow Lace Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117006', N'Yellow Lace Neck Decoration [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61117007', N'Yellow Lace Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118001', N'Red Military Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118002', N'Red Military Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118003', N'Red Military Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118004', N'Red Military Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118005', N'Red Military Shirts [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118006', N'Red Military Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61118007', N'Red Military Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119001', N'Blue Pirate Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119002', N'Blue Pirate Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119003', N'Blue Pirate Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119004', N'Blue Pirate Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119005', N'Blue Pirate Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119006', N'Blue Pirate Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61119007', N'Blue Pirate Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120001', N'Scuba Surfing Board [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120002', N'Scuba Lower Garment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120003', N'Scuba Flippers [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120004', N'Scuba Bracelet [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120005', N'Scuba Upper Garment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120006', N'Scuba Goggles [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61120007', N'Scuba Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121001', N'Violet Amazon Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121002', N'Violet Amazon Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121003', N'Violet Amazon Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121004', N'Violet Amazon Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121005', N'Violet Amazon Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121006', N'Violet Amazon Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61121007', N'Violet Amazon Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122001', N'Purple Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122002', N'Purple Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122003', N'Purple Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122004', N'Purple Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122005', N'Purple Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122006', N'Purple Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61122007', N'Purple Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123001', N'Blue Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123002', N'Blue Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123003', N'Blue Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123004', N'Blue Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123005', N'Blue Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123006', N'Blue Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61123007', N'Blue Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124001', N'Black Opera Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124002', N'Black Opera Costume Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124003', N'Black Opera Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124004', N'Black Opera Costume Ring [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124005', N'Black Opera Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124006', N'Black Opera Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61124007', N'Black Opera Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125001', N'Radiant Wedding Costume Adornment [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125002', N'Radiant Wedding Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125003', N'Radiant Wedding Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125004', N'Radiant Wedding Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125005', N'Radiant Wedding Costume Dress [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125006', N'Radiant Wedding Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61125007', N'Radiant Wedding Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126001', N'Vampire Skeleton Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126002', N'Vampire Zipper Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126003', N'Vampire Metal Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126004', N'Vampire Leather Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126005', N'Vampire Skeleton Tanktop', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126006', N'Vampire Pumpkin Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61126007', N'Vampire Bat-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127001', N'Red Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127002', N'Red Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127003', N'Red Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127004', N'Red Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127005', N'Red Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127006', N'Red Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61127007', N'Red Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128001', N'Blue Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128002', N'Blue Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128003', N'Blue Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128004', N'Blue Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128005', N'Blue Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128006', N'Blue Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61128007', N'Blue Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129001', N'White Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129002', N'White Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129003', N'White Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129004', N'White Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129005', N'White Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129006', N'White Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61129007', N'White Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130001', N'Blue Pirate Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130002', N'Blue Pirate Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130003', N'Blue Pirate Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130004', N'Blue Pirate Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130005', N'Blue Pirate Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130006', N'Blue Pirate Tie [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61130007', N'Blue Pirate Hat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131001', N'Blue Kingbird''s Feather Coat [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131002', N'Blue Kingbird''s Fur Skirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131003', N'Blue Kingbird''s Heels [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131004', N'Blue Kingbird''s Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131005', N'Blue Kingbird''s Belted Tunic [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131006', N'Blue Kingbird''s Feathers [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61131007', N'Blue Kingbird''s Plume [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132001', N'Black School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132002', N'Black School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132003', N'Black School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132004', N'Black School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132005', N'Black School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132006', N'Black School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61132007', N'Black School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133001', N'Yellow School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133002', N'Yellow School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133003', N'Yellow School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133004', N'Yellow School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133005', N'Yellow School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133006', N'Yellow School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61133007', N'Yellow School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134001', N'White School Uniform Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134002', N'White School Uniform Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134003', N'White School Uniform Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134004', N'White School Uniform Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134005', N'White School Uniform Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134006', N'White School Uniform Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134007', N'White School Uniform Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61134008', N'White School Uniform Costume Shirt [Roselle] [JPN]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135001', N'Snake-Deco Phoenix Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135002', N'Chain-Deco Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135003', N'Black Strap Sandals', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135004', N'Gold Ornament Bracelet', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135005', N'Hot Snake-Deco Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135006', N'Gold Ornament Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61135007', N'Pink Snake-Deco Upsweep Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136001', N'Shining Ark Costume Wing [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136002', N'Shining Ark Costume Skirt[Rokelle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136003', N'Shining Ark Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136004', N'Shining Ark Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136005', N'Shining Ark Costume Dress [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136006', N'Shining Ark Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61136007', N'Shining Ark Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143001', N'White Flaming Costume Jacket [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143002', N'White Flaming Costume Pants [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143003', N'White Flaming Costume Shoes [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143004', N'White Flaming Costume Gloves [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143005', N'White Flaming Costume Shirt [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143006', N'White Flaming Costume Necklace [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61143007', N'White Flaming Costume Hair [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201001', N'Blue Flower Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201002', N'Blue Flower Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201003', N'Blue Flower Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201004', N'Blue Flower Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201005', N'Blue Flower Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201006', N'Blue Flower Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61201007', N'Blue Flower Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202001', N'Black Floral Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202002', N'Black Floral Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202003', N'Black Floral Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202004', N'Black Floral Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202005', N'Black Floral Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202006', N'Black Floral Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61202007', N'Black Floral Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203001', N'Yellow Flower Dress Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203002', N'Yellow Flower Dress Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203003', N'Yellow Flower Dress Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203004', N'Yellow Flower Dress Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203005', N'Yellow Flower Dress Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203006', N'Yellow Flower Dress Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61203007', N'Yellow Flower Dress Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204001', N'New Traditional - Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204002', N'New Traditional - Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204003', N'New Traditional - Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204004', N'New Traditional - Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204005', N'New Traditional - Top [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204006', N'New Traditional - Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61204007', N'New Traditional - Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205001', N'Purple Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205002', N'Purple Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205003', N'Purple Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205004', N'Purple Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205005', N'Purple Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205006', N'Purple Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61205007', N'Purple Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206001', N'Emerald Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206002', N'Emerald Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206003', N'Emerald Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206004', N'Emerald Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206005', N'Emerald Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206006', N'Emerald Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61206007', N'Emerald Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207001', N'Yellow Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207002', N'Yellow Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207003', N'Yellow Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207004', N'Yellow Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207005', N'Yellow Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207006', N'Yellow Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61207007', N'Yellow Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208001', N'Purple Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208002', N'Purple Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208003', N'Purple Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208004', N'Purple Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208005', N'Purple Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208006', N'Purple Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61208007', N'Purple Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209001', N'Black Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209002', N'Black Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209003', N'Black Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209004', N'Black Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209005', N'Black Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209006', N'Black Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61209007', N'Black Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210001', N'Pink Black Magic Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210002', N'Pink Black Magic Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210003', N'Pink Black Magic Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210004', N'Pink Black Magic Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210005', N'Pink Black Magic Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210006', N'Pink Black Magic Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61210007', N'Pink Black Magic Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211001', N'Brown Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211002', N'Brown Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211003', N'Brown Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211004', N'Brown Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211005', N'Brown Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211006', N'Brown Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61211007', N'Brown Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212001', N'Green Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212002', N'Green Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212003', N'Green Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212004', N'Green Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212005', N'Green Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212006', N'Green Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61212007', N'Green Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213001', N'Red Budlet Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213002', N'Red Budlet Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213003', N'Red Budlet Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213004', N'Red Budlet Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213005', N'Red Budlet Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213006', N'Red Budlet Ribbon [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61213007', N'Red Budlet Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214001', N'White Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214002', N'White Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214003', N'White Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214004', N'White Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214005', N'White Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214006', N'White Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61214007', N'White Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215001', N'Blue Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215002', N'Blue Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215003', N'Blue Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215004', N'Blue Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215005', N'Blue Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215006', N'Blue Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61215007', N'Blue Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216001', N'Pink Snow Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216002', N'Pink Snow Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216003', N'Pink Snow Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216004', N'Pink Snow Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216005', N'Pink Snow Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216006', N'Pink Snow Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61216007', N'Pink Snow Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217001', N'Scuba Water Gun [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217002', N'Scuba Lower Garment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217003', N'Scuba Flippers [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217004', N'Scuba Bracelet [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217005', N'Scuba Upper Garment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217006', N'Scuba Goggles [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61217007', N'Scuba Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218001', N'Black Pirate Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218002', N'Black Pirate Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218003', N'Black Pirate Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218004', N'Black Pirate Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218005', N'Black Pirate Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218006', N'Black Pirate Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61218007', N'Black Pirate Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219001', N'Yellow Lady Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219002', N'Yellow Lady Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219003', N'Yellow Lady Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219004', N'Yellow Lady Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219005', N'Yellow Lady Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219006', N'Yellow Lady Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61219007', N'Yellow Lady Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220001', N'Blue Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220002', N'Blue Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220003', N'Blue Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220004', N'Blue Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220005', N'Blue Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220006', N'Blue Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61220007', N'Blue Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221001', N'Emerald Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221002', N'Emerald Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221003', N'Emerald Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221004', N'Emerald Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221005', N'Emerald Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221006', N'Emerald Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61221007', N'Emerald Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222001', N'Green Little Lady Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222002', N'Green Little Lady Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222003', N'Green Little Lady Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222004', N'Green Little Lady Costume Ring [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222005', N'Green Little Lady Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222006', N'Green Little Lady Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61222007', N'Green Little Lady Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223001', N'Radiant Wedding Costume Adornment [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223002', N'Radiant Wedding Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223003', N'Radiant Wedding Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223004', N'Radiant Wedding Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223005', N'Radiant Wedding Costume Dress [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223006', N'Radiant Wedding Costume Necklace [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61223007', N'Radiant Wedding Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224001', N'Fairy Butterfly Wings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224002', N'Fairy Star Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224003', N'Fairy Ribbon Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224004', N'Fairy Flower Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224005', N'Fairy Skeleton Blouse', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224006', N'Fairy Heart Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61224007', N'Fairy Candy-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225001', N'Red Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225002', N'Red Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225003', N'Red Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225004', N'Red Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225005', N'Red Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225006', N'Red Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61225007', N'Red Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226001', N'Blue Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226002', N'Blue Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226003', N'Blue Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226004', N'Blue Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226005', N'Blue Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226006', N'Blue Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61226007', N'Blue Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227001', N'White Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227002', N'White Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227003', N'White Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227004', N'White Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227005', N'White Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227006', N'White Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61227007', N'White Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228001', N'Black Pirate Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228002', N'Black Pirate Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228003', N'Black Pirate Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228004', N'Black Pirate Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228005', N'Black Pirate Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228006', N'Black Pirate Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61228007', N'Black Pirate Costume Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229001', N'White Bear''s Overcoat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229002', N'White Bear''s Bon Bon Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229003', N'White Bear''s Fur Boots [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229004', N'White Bear''s Fur Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229005', N'White Bear''s Adorned Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229006', N'White Bear''s Fur Scarf [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61229007', N'White Bear''s Fur Hat [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230001', N'White School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230002', N'White School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230003', N'White School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230004', N'White School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230005', N'White School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230006', N'White School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61230007', N'White School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231001', N'Plum School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231002', N'Plum School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231003', N'Plum School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231004', N'Plum School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231005', N'Plum School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231006', N'Plum School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61231007', N'Plum School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232001', N'Black School Uniform Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232002', N'Black School Uniform Costume Skirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232003', N'Black School Uniform Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232004', N'Black School Uniform Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232005', N'Black School Uniform Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232006', N'Black School Uniform Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61232007', N'Black School Uniform Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233001', N'Red Frill Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233002', N'Gold Ornament Volume Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233003', N'Deviant Crease Lined Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233004', N'Gold Snake-Deco Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233005', N'Red Frill Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233006', N'Amber Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61233007', N'Gold Snake-Deco Lovely Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234001', N'White Flaming Costume Jacket [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234002', N'White Flaming Costume Pants [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234003', N'White Flaming Costume Shoes [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234004', N'White Flaming Costume Gloves [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234005', N'White Flaming Costume Shirt [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234006', N'White Flaming Costume Tie [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'61234007', N'White Flaming Costume Hair [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001001', N'Golden Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001002', N'Golden Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001003', N'Golden Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001004', N'Golden Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001005', N'Golden Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001006', N'Golden Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62001007', N'Golden Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002001', N'Grey Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002002', N'Grey Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002003', N'Grey Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002004', N'Grey Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002005', N'Grey Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002006', N'Grey Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62002007', N'Grey Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003001', N'Navy Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003002', N'Navy Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003003', N'Navy Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003004', N'Navy Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003005', N'Navy Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003006', N'Navy Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62003007', N'Navy Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004001', N'Navy Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004002', N'Navy Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004003', N'Navy Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004004', N'Navy Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004005', N'Navy Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004006', N'Navy Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62004007', N'Navy Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005001', N'Dark Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005002', N'Dark Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005003', N'Dark Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005004', N'Dark Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005005', N'Dark Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005006', N'Dark Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62005007', N'Dark Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62006001', N'Bob Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62007001', N'Mushroom Cut [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62008001', N'Wind Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009001', N'Violet Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009002', N'Violet Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009003', N'Violet Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009004', N'Violet Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009005', N'Violet Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009006', N'Violet Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009007', N'Violet Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009008', N'Blue Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009009', N'Blue Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009010', N'Blue Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009011', N'Blue Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009012', N'Blue Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009013', N'Blue Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009014', N'Blue Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009015', N'White Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009016', N'White Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009017', N'White Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009018', N'White Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009019', N'White Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009020', N'White Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62009021', N'White Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010001', N'Pink Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010002', N'Pink Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010003', N'Pink Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010004', N'Pink Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010005', N'Pink Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010006', N'Pink Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62010007', N'Pink Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011001', N'Brown Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011002', N'Brown Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011003', N'Brown Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011004', N'Brown Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011005', N'Brown Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011006', N'Brown Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62011007', N'Brown Cowgirl Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012001', N'Black Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012002', N'Black Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012003', N'Black Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012004', N'Black Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012005', N'Black Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012006', N'Black Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012007', N'Black Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012008', N'Black Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012009', N'Black Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012010', N'Black Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012011', N'Black Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012012', N'Black Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012013', N'Black Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62012014', N'Black Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013001', N'Pink Princess Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013002', N'Pink Princess Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013003', N'Pink Princess Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013004', N'Pink Princess Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013005', N'Pink Princess Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013006', N'Pink Princess Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62013007', N'Pink Princess Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014001', N'Traditional Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014002', N'Traditional Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014003', N'Traditional Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014004', N'Traditional Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014005', N'Traditional Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014006', N'Traditional Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62014007', N'Traditional Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015001', N'White Cowgirl Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015002', N'White Cowgirl Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015003', N'White Cowgirl Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015004', N'White Cowgirl Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015005', N'White Cowgirl Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015006', N'White Cowgirl Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015007', N'White Cowgirl Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015008', N'White Fairy Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015009', N'White Fairy Pants [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015010', N'White Fairy Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015011', N'White Fairy Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015012', N'White Fairy Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015013', N'White Fairy Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62015014', N'White Fairy Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62016001', N'Golden Pattern Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017001', N'Golden Pattern Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017002', N'Golden Pattern Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017003', N'Golden Pattern Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017004', N'Golden Pattern Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017005', N'Golden Pattern Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017006', N'Golden Pattern Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62017007', N'Crimson Conjurer Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018001', N'Crimson Conjurer Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018002', N'Crimson Conjurer Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018003', N'Crimson Conjurer Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018004', N'Crimson Conjurer Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018005', N'Crimson Conjurer Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018006', N'Crimson Conjurer Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62018007', N'Crimson Conjurer Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019001', N'Blue Gold Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019002', N'Blue Gold Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019003', N'Blue Gold Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019004', N'Blue Gold Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019005', N'Blue Gold Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019006', N'Blue Gold Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62019007', N'Blue Gold Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020001', N'Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020002', N'Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020003', N'Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020004', N'Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020005', N'Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020006', N'Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62020007', N'Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021001', N'Winter Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021002', N'Winter Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021003', N'Winter Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021004', N'Winter Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021005', N'Winter Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021006', N'Winter Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62021007', N'Winter Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022001', N'Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022002', N'Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022003', N'Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022004', N'Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022005', N'Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022006', N'Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62022007', N'Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023001', N'Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023002', N'Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023003', N'Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023004', N'Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023005', N'Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023006', N'Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62023007', N'Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024001', N'Green Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024002', N'Green Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024003', N'Green Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024004', N'Green Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024005', N'Green Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024006', N'Green Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62024007', N'Green Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025001', N'Orange Striped Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025002', N'Orange Striped Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025003', N'Orange Striped Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025004', N'Orange Striped Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025005', N'Orange Striped Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025006', N'Orange Striped Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62025007', N'Orange Striped Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026001', N'Pumpkin Witch Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026002', N'Pumpkin Witch Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026003', N'Pumpkin Witch Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026004', N'Pumpkin Witch Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026005', N'Pumpkin Witch Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026006', N'Pumpkin Witch Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62026007', N'Pumpkin Witch Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027001', N'Pink Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027002', N'Pink Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027003', N'Pink Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027004', N'Pink Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027005', N'Pink Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027006', N'Pink Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62027007', N'Pink Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028001', N'Emerald Label Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028002', N'Emerald Label Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028003', N'Emerald Label Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028004', N'Emerald Label Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028005', N'Emerald Label Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028006', N'Emerald Label Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62028007', N'Emerald Label Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029001', N'Santa Cape [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029002', N'Santa Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029003', N'Santa Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029004', N'Santa Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029005', N'Santa Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029006', N'Santa Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62029007', N'Santa Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030001', N'New Traditional Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030002', N'New Traditional Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030003', N'New Traditional Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030004', N'New Traditional Ring [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030005', N'New Traditional Top [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030006', N'New Traditional Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62030007', N'New Traditional Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031001', N'Yellow Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031002', N'Yellow Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031003', N'Yellow Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031004', N'Yellow Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031005', N'Yellow Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031006', N'Yellow Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62031007', N'Yellow Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032001', N'Blue Magician Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032002', N'Blue Magician Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032003', N'Blue Magician Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032004', N'Blue Magician Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032005', N'Blue Magician Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032006', N'Blue Magician Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62032007', N'Blue Magician Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033001', N'White Star Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033002', N'White Star Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033003', N'White Star Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033004', N'White Star Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033005', N'White Star Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033006', N'White Star Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62033007', N'White Star Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034001', N'Grey Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034002', N'Grey Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034003', N'Grey Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034004', N'Grey Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034005', N'Grey Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034006', N'Grey Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62034007', N'Grey Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035001', N'Black Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035002', N'Black Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035003', N'Black Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035004', N'Black Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035005', N'Black Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035006', N'Black Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62035007', N'Black Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036001', N'Red Trench Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036002', N'Red Trench Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036003', N'Red Trench Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036004', N'Red Trench Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036005', N'Red Trench Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036006', N'Red Trench Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62036007', N'Red Trench Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037001', N'Emerald Trench Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037002', N'Emerald Trench Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037003', N'Emerald Trench Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037004', N'Emerald Trench Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037005', N'Emerald Trench Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037006', N'Emerald Trench Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62037007', N'Emerald Trench Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038001', N'Blue Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038002', N'Blue Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038003', N'Blue Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038004', N'Blue Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038005', N'Blue Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038006', N'Blue Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62038007', N'Blue Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039001', N'Pink Maid Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039002', N'Pink Maid Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039003', N'Pink Maid Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039004', N'Pink Maid Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039005', N'Pink Maid Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039006', N'Pink Maid Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62039007', N'Pink Maid Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040001', N'Purple Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040002', N'Purple Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040003', N'Purple Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040004', N'Purple Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040005', N'Purple Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040006', N'Purple Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62040007', N'Purple Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041001', N'White Leather Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041002', N'White Leather Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041003', N'White Leather Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041004', N'White Leather Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041005', N'White Leather Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041006', N'White Leather Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62041007', N'White Leather Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042001', N'Pink Fur Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042002', N'Pink Fur Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042003', N'Pink Fur Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042004', N'Pink Fur Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042005', N'Pink Fur Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042006', N'Pink Fur Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62042007', N'Pink Fur Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043001', N'Scuba Sea Horse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043002', N'Scuba Lower Garment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043003', N'Scuba Flippers [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043004', N'Scuba Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043005', N'Scuba Upper Garment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043006', N'Scuba Goggles [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62043007', N'Scuba Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044001', N'Red Pirate Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044002', N'Red Pirate Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044003', N'Red Pirate Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044004', N'Red Pirate Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044005', N'Red Pirate Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044006', N'Red Pirate Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62044007', N'Red Pirate Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045001', N'Crimson Conjurer Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045002', N'Crimson Conjurer Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045003', N'Crimson Conjurer Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045004', N'Crimson Conjurer Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045005', N'Crimson Conjurer Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045006', N'Crimson Conjurer Tie [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62045007', N'Crimson Conjurer Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046001', N'Radiant Wedding Costume Adornment [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046002', N'Radiant Wedding Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046003', N'Radiant Wedding Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046004', N'Radiant Wedding Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046005', N'Radiant Wedding Costume Dress [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046006', N'Radiant Wedding Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62046007', N'Radiant Wedding Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047001', N'Red Witch Mini Wings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047002', N'Red Witch Dress Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047003', N'Red Witch Mesh Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047004', N'Red Witch Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047005', N'Red Witch Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047006', N'Red Witch Ribbon Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62047007', N'Red Witch Silver Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048001', N'Red Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048002', N'Red Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048003', N'Red Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048004', N'Red Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048005', N'Red Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048006', N'Red Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62048007', N'Red Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049001', N'Blue Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049002', N'Blue Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049003', N'Blue Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049004', N'Blue Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049005', N'Blue Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049006', N'Blue Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62049007', N'Blue Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050001', N'White Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050002', N'White Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050003', N'White Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050004', N'White Flaming Costume Hand Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050005', N'White Flaming Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050006', N'White Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62050007', N'White Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051001', N'Red Pirate Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051002', N'Red Pirate Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051003', N'Red Pirate Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051004', N'Red Pirate Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051005', N'Red Pirate Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051006', N'Red Pirate Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62051007', N'Red Pirate Hat [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052001', N'Arctic Fox''s Hood [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052002', N'Arctic Fox''s Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052003', N'Arctic Fox''s Fur Boots [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052004', N'Arctic Fox''s Hand Warmers [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052005', N'Arctic Fox''s Tank Top [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052006', N'Arctic Fox''s Pendant [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62052007', N'Arctic Fox''s Pigtail''s [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053001', N'Beige School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053002', N'Beige School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053003', N'Beige School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053004', N'Beige School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053005', N'Beige School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053006', N'Beige School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62053007', N'Beige School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054001', N'Dark Brown School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054002', N'Dark Brown School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054003', N'Dark Brown School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054004', N'Dark Brown School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054005', N'Dark Brown School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054006', N'Dark Brown School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62054007', N'Dark Brown School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055001', N'Black School Uniform Costume Muffler [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055002', N'Black School Uniform Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055003', N'Black School Uniform Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055004', N'Black School Uniform Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055005', N'Black School Uniform Costume Blouse [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055006', N'Black School Uniform Costume Ribbon [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62055007', N'Black School Uniform Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056001', N'Red Belt Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056002', N'Snake Skin Leggings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056003', N'Black Strap Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056004', N'Black Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056005', N'Red Tight Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056006', N'Red Long Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62056007', N'Snake-Deco Palm Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057001', N'Shining Ark Costume Wing [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057002', N'Shining Ark Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057003', N'Shining Ark Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057004', N'Shining Ark Costume Gloves [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057005', N'Shining Ark Costume Dress [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057006', N'Shining Ark Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62057007', N'Shining Ark Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063001', N'White Flaming Costume Jacket [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063002', N'White Flaming Costume Skirt [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063003', N'White Flaming Costume Shoes [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063004', N'White Flaming Costume Back Tattoo [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063005', N'White Flaming Costume Tank Top [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063006', N'White Flaming Costume Necklace [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62063007', N'White Flaming Costume Hair [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101001', N'Santa Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101002', N'Santa Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101003', N'Santa Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101004', N'Santa Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101005', N'Santa Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101006', N'Santa Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62101007', N'Santa Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102001', N'Blue Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102002', N'Blue Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102003', N'Blue Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102004', N'Blue Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102005', N'Blue Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102006', N'Blue Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62102007', N'Blue Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103001', N'Purple Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103002', N'Purple Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103003', N'Purple Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103004', N'Purple Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103005', N'Purple Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103006', N'Purple Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62103007', N'Purple Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104001', N'Magenta Winter Hood [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104002', N'Magenta Winter Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104003', N'Magenta Winter Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104004', N'Magenta Winter Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104005', N'Magenta Winter Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104006', N'Magenta Winter Scarf [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62104007', N'Magenta Winter Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105001', N'Little Blue-Blood Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105002', N'Little Blue-Blood Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105003', N'Little Blue-Blood Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105004', N'Little Blue-Blood Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105005', N'Little Blue-Blood Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105006', N'Little Blue-Blood Bow Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62105007', N'Little Blue-Blood Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106001', N'New Traditional Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106002', N'New Traditional Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106003', N'New Traditional Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106004', N'New Traditional Bracelet [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106005', N'New Traditional Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106006', N'New Traditional Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62106007', N'New Traditional Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107001', N'Red Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107002', N'Red Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107003', N'Red Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107004', N'Red Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107005', N'Red Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107006', N'Red Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62107007', N'Red Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108001', N'Purple Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108002', N'Purple Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108003', N'Purple Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108004', N'Purple Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108005', N'Purple Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108006', N'Purple Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62108007', N'Purple Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109001', N'Emerald Troubadour Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109002', N'Emerald Troubadour Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109003', N'Emerald Troubadour Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109004', N'Emerald Troubadour Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109005', N'Emerald Troubadour Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109006', N'Emerald Troubadour Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62109007', N'Emerald Troubadour Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110001', N'Green Young Master Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110002', N'Green Young Master Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110003', N'Green Young Master Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110004', N'Green Young Master Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110005', N'Green Young Master Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110006', N'Green Young Master Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62110007', N'Green Young Master Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111001', N'Red Young Master Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111002', N'Red Young Master Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111003', N'Red Young Master Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111004', N'Red Young Master Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111005', N'Red Young Master Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111006', N'Red Young Master Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62111007', N'Red Young Master Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112001', N'Brown Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112002', N'Brown Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112003', N'Brown Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112004', N'Brown Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112005', N'Brown Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112006', N'Brown Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62112007', N'Brown Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113001', N'Black Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113002', N'Black Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113003', N'Black Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113004', N'Black Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113005', N'Black Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113006', N'Black Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62113007', N'Black Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114001', N'Red Sherlock Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114002', N'Red Sherlock Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114003', N'Red Sherlock Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114004', N'Red Sherlock Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114005', N'Red Sherlock Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114006', N'Red Sherlock Tights [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62114007', N'Red Sherlock Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115001', N'Black Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115002', N'Black Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115003', N'Black Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115004', N'Black Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115005', N'Black Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115006', N'Black Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62115007', N'Black Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116001', N'Brown Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116002', N'Brown Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116003', N'Brown Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116004', N'Brown Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116005', N'Brown Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116006', N'Brown Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62116007', N'Brown Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117001', N'Red Tailcoat Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117002', N'Red Tailcoat Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117003', N'Red Tailcoat Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117004', N'Red Tailcoat Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117005', N'Red Tailcoat Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117006', N'Red Tailcoat Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62117007', N'Red Tailcoat Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118001', N'Scuba Turtle [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118002', N'Scuba Lower Garment [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118003', N'Scuba Flippers [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118004', N'Scuba Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118005', N'Scuba Upper Garment [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118006', N'Scuba Goggles [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62118007', N'Scuba Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119001', N'Brown Pirate Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119002', N'Brown Pirate Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119003', N'Brown Pirate Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119004', N'Brown Pirate Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119005', N'Brown Pirate Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119006', N'Brown Pirate Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62119007', N'Brown Pirate Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120001', N'Little Blue-Blood Cape [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120002', N'Little Blue-Blood Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120003', N'Little Blue-Blood Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120004', N'Little Blue-Blood Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120005', N'Little Blue-Blood Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120006', N'Little Blue-Blood Bow Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62120007', N'Little Blue-Blood Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121001', N'Radiant Wedding Costume Tuxedo [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121002', N'Radiant Wedding Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121003', N'Radiant Wedding Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121004', N'Radiant Wedding Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121005', N'Radiant Wedding Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121006', N'Radiant Wedding Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62121007', N'Radiant Wedding Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122001', N'Brown Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122002', N'Brown Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122003', N'Brown Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122004', N'Brown Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122005', N'Brown Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122006', N'Brown Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62122007', N'Brown Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123001', N'Green Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123002', N'Green Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123003', N'Green Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123004', N'Green Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123005', N'Green Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123006', N'Green Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62123007', N'Green Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124001', N'Plum Duke Costume Cloak [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124002', N'Plum Duke Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124003', N'Plum Duke Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124004', N'Plum Duke Costume Ring [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124005', N'Plum Duke Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124006', N'Plum Duke Costume Ribbon [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62124007', N'Plum Duke Costume Hat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125001', N'Andromeda Star Cloak', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125002', N'Andromeda Slim Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125003', N'Andromeda Pumpkin Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125004', N'Andromeda Pumpkin Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125005', N'Andromeda Pumpkin Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125006', N'Andromeda Muffler', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62125007', N'Andromeda Pumpkin Helmet', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126001', N'Red Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126002', N'Red Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126003', N'Red Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126004', N'Red Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126005', N'Red Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126006', N'Red Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62126007', N'Red Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127001', N'Blue Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127002', N'Blue Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127003', N'Blue Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127004', N'Blue Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127005', N'Blue Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127006', N'Blue Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62127007', N'Blue Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128001', N'White Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128002', N'White Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128003', N'White Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128004', N'White Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128005', N'White Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128006', N'White Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62128007', N'White Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129001', N'Brown Pirate Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129002', N'Brown Pirate Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129003', N'Brown Pirate Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129004', N'Brown Pirate Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129005', N'Brown Pirate Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129006', N'Brown Pirate Costume Tie [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62129007', N'Brown Pirate Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130001', N'Wild Bull''s Coat [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130002', N'Wild Bull''s Leather Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130003', N'Wild Bull''s Woolly Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130004', N'Wild Bull''s Woolly Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130005', N'Wild Bull''s Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130006', N'Wild Bull''s Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62130007', N'Wild Bull''s Cap [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131001', N'Dark Brown School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131002', N'Dark Brown School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131003', N'Dark Brown School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131004', N'Dark Brown School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131005', N'Dark Brown School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131006', N'Dark Brown School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62131007', N'Dark Brown School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132001', N'Pink School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132002', N'Pink School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132003', N'Pink School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132004', N'Pink School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132005', N'Pink School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132006', N'Pink School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62132007', N'Pink School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133001', N'Yellow School Uniform Costume Vest [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133002', N'Yellow School Uniform Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133003', N'Yellow School Uniform Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133004', N'Yellow School Uniform Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133005', N'Yellow School Uniform Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133006', N'Yellow School Uniform Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62133007', N'Yellow School Uniform Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134001', N'Snake Patterned Feather Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134002', N'Red Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134003', N'Metal Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134004', N'Black Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134005', N'Slim Mesh Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134006', N'Snake Patterned Silver Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62134007', N'Snake-Deco Red Pointed Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135001', N'White Flaming Costume Jacket [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135002', N'White Flaming Costume Pants [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135003', N'White Flaming Costume Shoes [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135004', N'White Flaming Costume Gloves [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135005', N'White Flaming Costume Shirt [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135006', N'White Flaming Costume Necklace [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'62135007', N'White Flaming Costume Hair [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001001', N'Black Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001002', N'Black Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001003', N'Black Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001004', N'Black Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001005', N'Black Oldie Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001006', N'Black Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63001007', N'Black Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002001', N'Grey Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002002', N'Grey Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002003', N'Grey Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002004', N'Grey Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002005', N'Grey Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002006', N'Grey Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63002007', N'Grey Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003001', N'Black Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003002', N'Black Leather Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003003', N'Black Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003004', N'Black Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003005', N'Black Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003006', N'Black Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63003007', N'Black Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004001', N'Navy Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004002', N'Navy Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004003', N'Navy Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004004', N'Navy Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004005', N'Navy Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004006', N'Navy Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63004007', N'Navy Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005001', N'Pin-Striped Punk Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005002', N'Pin-Striped Punk Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005003', N'Pin-Striped Punk Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005004', N'Pin-Striped Punk Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005005', N'Pin-Striped Punk Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005006', N'Pin-Striped Punk Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63005007', N'Pin-Striped Punk Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63006001', N'Danny Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63007001', N'Layered Cut [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63008001', N'Mohican [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009001', N'Purple Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009002', N'Purple Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009003', N'Purple Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009004', N'Purple Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009005', N'Purple Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009006', N'Purple Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63009007', N'Purple Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010001', N'Brown Cowboy Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010002', N'Brown Cowboy Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010003', N'Brown Cowboy Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010004', N'Brown Cowboy Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010005', N'Brown Cowboy Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010006', N'Brown Cowboy Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63010007', N'Brown Cowboy Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011001', N'Stylish Cellmate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011002', N'Stylish Cellmate Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011003', N'Stylish Cellmate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011004', N'Stylish Cellmate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011005', N'Stylish Cellmate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011006', N'Stylish Cellmate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63011007', N'Stylish Cellmate Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012001', N'Black Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012002', N'Black Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012003', N'Black Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012004', N'Black Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012005', N'Black Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012006', N'Black Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63012007', N'Black Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013001', N'White Papillon Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013002', N'White Papillon Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013003', N'White Papillon Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013004', N'White Papillon Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013005', N'White Papillon Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013006', N'White Papillon Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63013007', N'White Papillon Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014001', N'Casual Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014002', N'Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014003', N'Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014004', N'Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014005', N'Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014006', N'Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63014007', N'Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015001', N'Blue Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015002', N'Blue Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015003', N'Blue Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015004', N'Blue Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015005', N'Blue Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015006', N'Blue Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63015007', N'Blue Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016001', N'Pink Slim-Fit Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016002', N'Pink Slim-Fit Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016003', N'Pink Slim-Fit Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016004', N'Pink Slim-Fit Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016005', N'Pink Slim-Fit Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016006', N'Pink Slim-Fit Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63016007', N'Pink Slim-Fit Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017001', N'White Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017002', N'White Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017003', N'White Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017004', N'White Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017005', N'White Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017006', N'White Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63017007', N'White Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018001', N'Traditional Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018002', N'Traditional Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018003', N'Traditional Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018004', N'Traditional Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018005', N'Traditional Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018006', N'Traditional Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63018007', N'Traditional Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019001', N'Black Pirate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019002', N'Black Pirate Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019003', N'Black Pirate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019004', N'Black Pirate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019005', N'Black Pirate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019006', N'Black Pirate Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63019007', N'Black Pirate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020001', N'Pale Rider Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020002', N'Pale Rider Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020003', N'Pale Rider Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020004', N'Pale Rider Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020005', N'Pale Rider Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020006', N'Pale Rider Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63020007', N'Pale Rider Bandana [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021001', N'Silver Sage Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021002', N'Silver Sage Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021003', N'Silver Sage Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021004', N'Silver Sage Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021005', N'Silver Sage Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021006', N'Silver Sage Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63021007', N'Silver Sage Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022001', N'Brown Gold Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022002', N'Brown Gold Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022003', N'Brown Gold Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022004', N'Brown Gold Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022005', N'Brown Gold Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022006', N'Brown Gold Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63022007', N'Brown Gold Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023001', N'Blue Gold Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023002', N'Blue Gold Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023003', N'Blue Gold Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023004', N'Blue Gold Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023005', N'Blue Gold Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023006', N'Blue Gold Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63023007', N'Blue Gold Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024001', N'Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024002', N'Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024003', N'Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024004', N'Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024005', N'Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024006', N'Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63024007', N'Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025001', N'Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025002', N'Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025003', N'Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025004', N'Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025005', N'Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025006', N'Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63025007', N'Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026001', N'Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026002', N'Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026003', N'Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026004', N'Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026005', N'Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026006', N'Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63026007', N'Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027001', N'Green Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027002', N'Green Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027003', N'Green Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027004', N'Green Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027005', N'Green Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027006', N'Green Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63027007', N'Green Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028001', N'Orange Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028002', N'Orange Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028003', N'Orange Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028004', N'Orange Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028005', N'Orange Leather Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028006', N'Orange Leather Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63028007', N'Orange Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029001', N'Cipher''s Monster Body [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029002', N'Cipher''s Monster Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029003', N'Cipher''s Monster Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029004', N'Cipher''s Monster Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029005', N'Cipher''s Monster Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029006', N'Cipher''s Monster Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63029007', N'Cipher''s Monster Head [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030001', N'Yellow Oldie Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030002', N'Yellow Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030003', N'Yellow Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030004', N'Yellow Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030005', N'Yellow Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030006', N'Yellow Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63030007', N'Yellow Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031001', N'Blue Oldie Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031002', N'Blue Oldie Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031003', N'Blue Oldie Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031004', N'Blue Oldie Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031005', N'Blue Oldie Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031006', N'Blue Oldie Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63031007', N'Blue Oldie Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032001', N'Santa Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032002', N'Santa Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032003', N'Santa Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032004', N'Santa Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032005', N'Santa Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032006', N'Santa Scarf [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63032007', N'Santa Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033001', N'New Traditional Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033002', N'New Traditional Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033003', N'New Traditional Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033004', N'New Traditional Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033005', N'New Traditional Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033006', N'New Traditional Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63033007', N'New Traditional Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034001', N'Black Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034002', N'Black Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034003', N'Black Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034004', N'Black Casual Wristband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034005', N'Black Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034006', N'Black Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63034007', N'Black Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035001', N'Check Casual Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035002', N'Check Casual Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035003', N'Check Casual Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035004', N'Check Casual Wristband [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035005', N'Check Casual Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035006', N'Check Casual Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63035007', N'Check Casual Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036001', N'White Wanderer Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036002', N'White Wanderer Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036003', N'White Wanderer Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036004', N'White Wanderer Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036005', N'White Wanderer Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036006', N'White Wanderer Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63036007', N'White Wanderer Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037001', N'Brown Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037002', N'Brown Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037003', N'Brown Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037004', N'Brown Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037005', N'Brown Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037006', N'Brown Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63037007', N'Brown Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038001', N'White Military Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038002', N'White Military Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038003', N'White Military Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038004', N'White Military Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038005', N'White Military Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038006', N'White Military Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63038007', N'White Military Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039001', N'Black Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039002', N'Black Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039003', N'Black Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039004', N'Black Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039005', N'Black Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039006', N'Black Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63039007', N'Black Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040001', N'Green Boxing Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040002', N'Green Boxing Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040003', N'Green Boxing Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040004', N'Green Boxing Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040005', N'Green Boxing Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040006', N'Green Boxing Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63040007', N'Green Boxing Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041001', N'Purple Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041002', N'Purple Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041003', N'Purple Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041004', N'Purple Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041005', N'Purple Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041006', N'Purple Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63041007', N'Purple Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042001', N'Blue Uniform Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042002', N'Blue Uniform Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042003', N'Blue Uniform Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042004', N'Blue Uniform Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042005', N'Blue Uniform Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042006', N'Blue Uniform Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63042007', N'Blue Uniform Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63043001', N'ID ??? ????', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044001', N'Brown Leather Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044002', N'Brown Leather Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044003', N'Brown Leather Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044004', N'Brown Leather Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044005', N'Brown Leather Shirts [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044006', N'Brown Leather Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63044007', N'Brown Leather Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045001', N'Scuba Oxy Cylinders [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045002', N'Scuba Lower Garment [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045003', N'Scuba Flippers [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045004', N'Scuba Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045005', N'Scuba Upper Garment [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045006', N'Scuba Goggles [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63045007', N'Scuba Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046001', N'Silver Sage Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046002', N'Silver Sage Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046003', N'Silver Sage Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046004', N'Silver Sage Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046005', N'Silver Sage Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046006', N'Silver Sage Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63046007', N'Silver Sage Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047001', N'Radiant Wedding Costume Tuxedo [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047002', N'Radiant Wedding Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047003', N'Radiant Wedding Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047004', N'Radiant Wedding Costume Ring [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047005', N'Radiant Wedding Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047006', N'Radiant Wedding Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63047007', N'Radiant Wedding Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048001', N'Pierrot Agile Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048002', N'Pierrot Striped Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048003', N'Pierrot Star Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048004', N'Pierrot Pumpkin Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048005', N'Pierrot Slim Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048006', N'Pierrot Skeleton Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63048007', N'Pierrot Magician Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049001', N'Red Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049002', N'Red Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049003', N'Red Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049004', N'Red Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049005', N'Red Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049006', N'Red Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63049007', N'Red Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050001', N'Blue Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050002', N'Blue Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050003', N'Blue Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050004', N'Blue Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050005', N'Blue Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050006', N'Blue Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63050007', N'Blue Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051001', N'White Flaming Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051002', N'White Flaming Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051003', N'White Flaming Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051004', N'White Flaming Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051005', N'White Flaming Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051006', N'White Flaming Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63051007', N'White Flaming Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052001', N'Black Pirate Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052002', N'Black Pirate Hat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052003', N'Black Pirate Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052004', N'Black Pirate Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052005', N'Black Pirate Coat [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052006', N'Black Pirate Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63052007', N'Black Pirate Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053001', N'Black Leopard''s Mantle [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053002', N'Black Leopard''s Chaps [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053003', N'Black Leopard''s Boots [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053004', N'Black Leopard''s Wristlets [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053005', N'Black Leopard''s Chest Straps [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053006', N'Black Leopard''s Clan Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63053007', N'Black Leopard''s Topknot [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054001', N'Indigo School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054002', N'Indigo School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054003', N'Indigo School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054004', N'Indigo School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054005', N'Indigo School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054006', N'Indigo School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63054007', N'Indigo School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055001', N'Green School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055002', N'Green School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055003', N'Green School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055004', N'Green School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055005', N'Green School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055006', N'Green School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63055007', N'Green School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056001', N'Plum School Uniform Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056002', N'Plum School Uniform Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056003', N'Plum School Uniform Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056004', N'Plum School Uniform Costume Bracelet [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056005', N'Plum School Uniform Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056006', N'Plum School Uniform Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63056007', N'Plum School Uniform Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057001', N'Red Deviant Crease Lined Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057002', N'Snake Patterned Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057003', N'Black Walker Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057004', N'Snake Patterned Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057005', N'V-neck T-Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057006', N'Snake Patterned Long Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63057007', N'Snake-Deco Tied Hairstyle', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058001', N'Shining Ark Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058002', N'Shining Ark Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058003', N'Shining Ark Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058004', N'Shining Ark Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058005', N'Shining Ark Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058006', N'Shining Ark Costume Necklace [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63058007', N'Shining Ark Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059001', N'White Fire Costume Jacket [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059002', N'White Fire Costume Pants [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059003', N'White Fire Costume Shoes [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059004', N'White Fire Costume Gloves [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059005', N'White Fire Costume Shirt [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059006', N'White Fire Costume Tie [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63059007', N'White Fire Costume Hair [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101001', N'Plum Bird Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101002', N'Plum Bird Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101003', N'Plum Bird Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101004', N'Plum Bird Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101005', N'Plum Bird Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101006', N'Plum Bird Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63101007', N'Plum Bird Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102001', N'Sky Blue Bird Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102002', N'Sky Blue Bird Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102003', N'Sky Blue Bird Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102004', N'Sky Blue Bird Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102005', N'Sky Blue Bird Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102006', N'Sky Blue Bird Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63102007', N'Sky Blue Bird Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103001', N'Midnight Green Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103002', N'Midnight Green Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103003', N'Midnight Green Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103004', N'Midnight Green Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103005', N'Midnight Green Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103006', N'Midnight Green Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63103007', N'Midnight Green Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104001', N'Red Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104002', N'Red Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104003', N'Red Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104004', N'Red Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104005', N'Red Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104006', N'Red Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63104007', N'Red Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105001', N'Black Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105002', N'Black Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105003', N'Black Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105004', N'Black Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105005', N'Black Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105006', N'Black Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63105007', N'Black Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106001', N'Yellow Flame Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106002', N'Yellow Flame Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106003', N'Yellow Flame Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106004', N'Yellow Flame Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106005', N'Yellow Flame Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106006', N'Yellow Flame Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63106007', N'Yellow Flame Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107001', N'Cursed Soul Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107002', N'Cursed Soul Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107003', N'Cursed Soul Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107004', N'Cursed Soul Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107005', N'Cursed Soul Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107006', N'Cursed Soul Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63107007', N'Cursed Soul Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108001', N'Santa Cape [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108002', N'Santa Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108003', N'Santa Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108004', N'Santa Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108005', N'Santa Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108006', N'Santa Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63108007', N'Santa Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109001', N'New Traditional Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109002', N'New Traditional Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109003', N'New Traditional Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109004', N'New Traditional Top [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109005', N'New Traditional Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109006', N'New Traditional Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63109007', N'New Traditional Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110001', N'Red Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110002', N'Red Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110003', N'Red Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110004', N'Red Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110005', N'Red Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110006', N'Red Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63110007', N'Red Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111001', N'Blue Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111002', N'Blue Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111003', N'Blue Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111004', N'Blue Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111005', N'Blue Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111006', N'Blue Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63111007', N'Blue Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112001', N'Pink Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112002', N'Pink Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112003', N'Pink Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112004', N'Pink Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112005', N'Pink Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112006', N'Pink Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63112007', N'Pink Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113001', N'Pink Sagunja[Plum] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113002', N'Pink Sagunja[Plum] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113003', N'Pink Sagunja[Plum] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113004', N'Pink Sagunja[Plum] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113005', N'Pink Sagunja[Plum] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113006', N'Pink Sagunja[Plum] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63113007', N'Pink Sagunja[Plum] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114001', N'Yellow Sagunja[Chrysanthemum] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114002', N'Yellow Sagunja[Chrysanthemum] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114003', N'Yellow Sagunja[Chrysanthemum] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114004', N'Yellow Sagunja[Chrysanthemum] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114005', N'Yellow Sagunja[Chrysanthemum] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114006', N'Yellow Sagunja[Chrysanthemum] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63114007', N'Yellow Sagunja[Chrysanthemum] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115001', N'Green Sagunja[Bamboo] Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115002', N'Green Sagunja[Bamboo] Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115003', N'Green Sagunja[Bamboo] Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115004', N'Green Sagunja[Bamboo] Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115005', N'Green Sagunja[Bamboo] Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115006', N'Green Sagunja[Bamboo] Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63115007', N'Green Sagunja[Bamboo] Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116001', N'Purple Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116002', N'Purple Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116003', N'Purple Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116004', N'Purple Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116005', N'Purple Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116006', N'Purple Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63116007', N'Purple Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117001', N'Emerald Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117002', N'Emerald Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117003', N'Emerald Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117004', N'Emerald Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117005', N'Emerald Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117006', N'Emerald Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63117007', N'Emerald Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118001', N'Red Shaman Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118002', N'Red Shaman Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118003', N'Red Shaman Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118004', N'Red Shaman Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118005', N'Red Shaman Tights [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118006', N'Red Shaman Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63118007', N'Red Shaman Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119001', N'Black Flame Pattern Vest [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119002', N'Black Flame Pattern Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119003', N'Black Flame Pattern Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119004', N'Black Flame Pattern Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119005', N'Black Flame Pattern Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119006', N'Black Flame Pattern Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63119007', N'Black Flame Pattern Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120001', N'Brown Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120002', N'Brown Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120003', N'Brown Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120004', N'Brown Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120005', N'Brown Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120006', N'Brown Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63120007', N'Brown Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121001', N'Emerald Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121002', N'Emerald Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121003', N'Emerald Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121004', N'Emerald Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121005', N'Emerald Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121006', N'Emerald Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63121007', N'Emerald Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122001', N'Purple Cowgirl Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122002', N'Purple Cowgirl Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122003', N'Purple Cowgirl Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122004', N'Purple Cowgirl Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122005', N'Purple Cowgirl Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122006', N'Purple Cowgirl Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63122007', N'Purple Cowgirl Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123001', N'Scuba Salamander [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123002', N'Scuba Flippers [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123003', N'Scuba Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123004', N'Scuba Dive Suit [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123005', N'Scuba Goggles [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123006', N'Scuba Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63123007', N'Scuba Earring [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124001', N'Blue Pirate Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124002', N'Blue Pirate Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124003', N'Blue Pirate Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124004', N'Blue Pirate Costume Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124005', N'Blue Pirate Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124006', N'Blue Pirate Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63124007', N'Blue Pirate Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125001', N'Blue Star Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125002', N'Blue Star Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125003', N'Blue Star Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125004', N'Blue Star Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125005', N'Blue Star Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125006', N'Blue Star Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63125007', N'Blue Star Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126001', N'Emerald Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126002', N'Emerald Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126003', N'Emerald Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126004', N'Emerald Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126005', N'Emerald Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126006', N'Emerald Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63126007', N'Emerald Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127001', N'Purple Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127002', N'Purple Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127003', N'Purple Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127004', N'Purple Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127005', N'Purple Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127006', N'Purple Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63127007', N'Purple Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128001', N'Pink Madame Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128002', N'Pink Madame Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128003', N'Pink Madame Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128004', N'Pink Madame Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128005', N'Pink Madame Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128006', N'Pink Madame Costume Hat [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63128007', N'Pink Madame Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129001', N'Radiant Wedding Costume Adornment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129002', N'Radiant Wedding Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129003', N'Radiant Wedding Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129004', N'Radiant Wedding Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129005', N'Radiant Wedding Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129006', N'Radiant Wedding Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63129007', N'Radiant Wedding Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130001', N'Pumpkin Girl Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130002', N'Pumpkin Girl Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130003', N'Pumpkin Girl Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130004', N'Pumpkin Girl Blouse', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130005', N'Pumpkin Girl Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130006', N'Pumpkin Girl Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63130007', N'Pumpkin Girl Earrings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131001', N'Red Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131002', N'Red Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131003', N'Red Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131004', N'Red Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131005', N'Red Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131006', N'Red Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63131007', N'Red Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132001', N'Blue Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132002', N'Blue Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132003', N'Blue Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132004', N'Blue Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132005', N'Blue Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132006', N'Blue Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63132007', N'Blue Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133001', N'White Flaming Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133002', N'White Flaming Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133003', N'White Flaming Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133004', N'White Flaming Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133005', N'White Flaming Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133006', N'White Flaming Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63133007', N'White Flaming Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134001', N'Blue Pirate Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134002', N'Blue Pirate Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134003', N'Blue Pirate Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134004', N'Blue Pirate Costume Shirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134005', N'Blue Pirate Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134006', N'Blue Pirate Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63134007', N'Blue Pirate Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135001', N'Sly Coyote''s Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135002', N'Sly Coyote''s Shell-Toe Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135003', N'Sly Coyote''s Fur Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135004', N'Sly Coyote''s Fur Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135005', N'Sly Coyote''s Talisman [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135006', N'Sly Coyote''s Tail [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63135007', N'Sly Coyote''s Pendant [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136001', N'Pink School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136002', N'Pink School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136003', N'Pink School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136004', N'Pink School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136005', N'Pink School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136006', N'Pink School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63136007', N'Pink School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137001', N'Brown School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137002', N'Brown School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137003', N'Brown School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137004', N'Brown School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137005', N'Brown School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137006', N'Brown School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63137007', N'Brown School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138001', N'White School Uniform Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138002', N'White School Uniform Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138003', N'White School Uniform Costume Bracelet [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138004', N'White School Uniform Costume Garment [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138005', N'White School Uniform Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138006', N'White School Uniform Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63138007', N'White School Uniform Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139001', N'Gold Short Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139002', N'Mesh Leggings Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139003', N'Mesh Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139004', N'Metal Garment Set', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139005', N'Gold Snake Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139006', N'Indigo Bridge Snake-Deco Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63139007', N'Gold Snake Earrings', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140001', N'Shining Ark Costume Wing [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140002', N'Shining Ark Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140003', N'Shining Ark Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140004', N'Shining Ark Costume Dress [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140005', N'Shining Ark Costume Tie [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140006', N'Shining Ark Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63140007', N'Shining Ark Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141001', N'White Fire Costume Jacket [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141002', N'White Fire Costume Shoes [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141003', N'White Fire Costume Gloves [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141004', N'White Fire Costume Skirt [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141005', N'White Fire Costume Necklace [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141006', N'White Fire Costume Hair [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'63141007', N'White Fire Costume Earrings [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001001', N'Black Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001002', N'Black Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001003', N'Black Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001004', N'Black Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001005', N'Black Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001006', N'Black Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64001007', N'Black Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002001', N'Grey Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002002', N'Grey Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002003', N'Grey Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002004', N'Grey Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002005', N'Grey Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002006', N'Grey Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64002007', N'Grey Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003001', N'Navy Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003002', N'Navy Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003003', N'Navy Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003004', N'Navy Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003005', N'Navy Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003006', N'Navy Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64003007', N'Navy Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004001', N'Brown Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004002', N'Brown Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004003', N'Brown Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004004', N'Brown Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004005', N'Brown Striped Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004006', N'Brown Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64004007', N'Brown Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005001', N'Violet Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005002', N'Violet Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005003', N'Violet Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005004', N'Violet Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005005', N'Violet Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005006', N'Violet Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64005007', N'Violet Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006001', N'Brown Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006002', N'Brown Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006003', N'Brown Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006004', N'Brown Cowgirl Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006005', N'Brown Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006006', N'Brown Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64006007', N'Brown Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007001', N'Blue Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007002', N'Blue Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007003', N'Blue Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007004', N'Blue Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007005', N'Blue Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007006', N'Blue Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64007007', N'Blue Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008001', N'Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008002', N'Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008003', N'Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008004', N'Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008005', N'Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008006', N'Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64008007', N'Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009001', N'Blue Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009002', N'Blue Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009003', N'Blue Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009004', N'Blue Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009005', N'Blue Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009006', N'Blue Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64009007', N'Blue Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010001', N'Pink Striped Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010002', N'Pink Striped Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010003', N'Pink Striped Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010004', N'Pink Striped Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010005', N'Pink Striped Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010006', N'Pink Striped Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64010007', N'Pink Striped Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011001', N'White Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011002', N'White Military Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011003', N'White Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011004', N'White Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011005', N'White Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011006', N'White Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64011007', N'White Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012001', N'White Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012002', N'White Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012003', N'White Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012004', N'White Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012005', N'White Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012006', N'White Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64012007', N'White Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013001', N'White Cowgirl Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013002', N'White Cowgirl Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013003', N'White Cowgirl Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013004', N'White Cowgirl Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013005', N'White Cowgirl Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013006', N'White Cowgirl Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64013007', N'White Cowgirl Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014001', N'Traditional Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014002', N'Traditional Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014003', N'Traditional Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014004', N'Traditional Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014005', N'Traditional Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014006', N'Traditional Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64014007', N'Traditional Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015001', N'Red Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015002', N'Red Nun Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015003', N'Red Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015004', N'Red Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015005', N'Red Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015006', N'Red Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64015007', N'Red Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016001', N'White Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016002', N'White Nun Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016003', N'White Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016004', N'White Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016005', N'White Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016006', N'White Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64016007', N'White Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017001', N'Nun Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017002', N'Nun Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017003', N'Nun Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017004', N'Nun Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017005', N'Nun Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017006', N'Nun Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64017007', N'Nun Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018001', N'Chinese Dress Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018002', N'Chinese Dress Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018003', N'Chinese Dress Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018004', N'Chinese Dress Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018005', N'Chinese Dress Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018006', N'Chinese Dress Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64018007', N'Chinese Dress Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019001', N'Scarlet Chic Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019002', N'Scarlet Chic Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019003', N'Scarlet Chic Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019004', N'Scarlet Chic Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019005', N'Scarlet Chic Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019006', N'Scarlet Chic Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64019007', N'Scarlet Chic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020001', N'Brown Pirate Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020002', N'Brown Pirate Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020003', N'Brown Pirate Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020004', N'Brown Pirate Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020005', N'Brown Pirate Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020006', N'Brown Pirate Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64020007', N'Brown Pirate Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021001', N'Vice-Minister Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021002', N'Vice-Minister Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021003', N'Vice-Minister Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021004', N'Vice-Minister Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021005', N'Vice-Minister Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021006', N'Vice-Minister Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64021007', N'Vice-Minister Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022001', N'Navy Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022002', N'Navy Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022003', N'Navy Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022004', N'Navy Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022005', N'Navy Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022006', N'Navy Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64022007', N'Navy Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023001', N'Green Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023002', N'Green Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023003', N'Green Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023004', N'Green Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023005', N'Green Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023006', N'Green Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64023007', N'Green Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024001', N'Orange Rider Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024002', N'Orange Rider Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024003', N'Orange Rider Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024004', N'Orange Rider Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024005', N'Orange Rider Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024006', N'Orange Rider Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64024007', N'Orange Rider Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025001', N'Feral Feline Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025002', N'Feral Feline Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025003', N'Feral Feline Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025004', N'Feral Feline Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025005', N'Feral Feline Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025006', N'Feral Feline Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64025007', N'Feral Feline Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026001', N'Purple Fashion Icon Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026002', N'Purple Fashion Icon Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026003', N'Purple Fashion Icon Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026004', N'Purple Fashion Icon Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026005', N'Purple Fashion Icon Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026006', N'Purple Fashion Icon Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64026007', N'Purple Fashion Icon Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027001', N'Blue Fashion Icon Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027002', N'Blue Fashion Icon Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027003', N'Blue Fashion Icon Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027004', N'Blue Fashion Icon Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027005', N'Blue Fashion Icon Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027006', N'Blue Fashion Icon Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64027007', N'Blue Fashion Icon Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028001', N'Santa Coat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028002', N'Santa Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028003', N'Santa Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028004', N'Santa Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028005', N'Santa Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028006', N'Santa Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64028007', N'Santa Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029001', N'New Traditional Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029002', N'New Traditional Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029003', N'New Traditional Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029004', N'New Traditional Ring [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029005', N'New Traditional Top [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029006', N'New Traditional Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64029007', N'New Traditional Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030001', N'Pink Undersecretary Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030002', N'Pink Undersecretary Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030003', N'Pink Undersecretary Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030004', N'Pink Undersecretary Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030005', N'Pink Undersecretary Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030006', N'Pink Undersecretary Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64030007', N'Pink Undersecretary Hat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031001', N'Emerald Undersecretary Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031002', N'Emerald Undersecretary Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031003', N'Emerald Undersecretary Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031004', N'Emerald Undersecretary Bracelet [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031005', N'Emerald Undersecretary Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031006', N'Emerald Undersecretary Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64031007', N'Emerald Undersecretary Hat [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032001', N'White Feather Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032002', N'White Feather Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032003', N'White Feather Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032004', N'White Feather Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032005', N'White Feather Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032006', N'White Feather Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64032007', N'White Feather Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033001', N'Red Chinese Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033002', N'Red Chinese Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033003', N'Red Chinese Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033004', N'Red Chinese Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033005', N'Red Chinese Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033006', N'Red Chinese Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64033007', N'Red Chinese Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034001', N'White Chinese Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034002', N'White Chinese Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034003', N'White Chinese Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034004', N'White Chinese Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034005', N'White Chinese Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034006', N'White Chinese Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64034007', N'White Chinese Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035001', N'Orange Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035002', N'Orange Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035003', N'Orange Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035004', N'Orange Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035005', N'Orange Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035006', N'Orange Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64035007', N'Orange Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036001', N'Sky Blue Joker Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036002', N'Sky Blue Joker Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036003', N'Sky Blue Joker Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036004', N'Sky Blue Joker Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036005', N'Sky Blue Joker Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036006', N'Sky Blue Joker Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64036007', N'Sky Blue Joker Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037001', N'White Military Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037002', N'White Military Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037003', N'White Military Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037004', N'White Military Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037005', N'White Military Shirts [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037006', N'White Military Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64037007', N'White Military Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038001', N'Scuba Otter [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038002', N'Scuba Lower Garment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038003', N'Scuba Flippers [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038004', N'Scuba Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038005', N'Scuba Upper Garment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038006', N'Scuba Goggles [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64038007', N'Scuba Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039001', N'Scarlet Chic Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039002', N'Scarlet Chic Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039003', N'Scarlet Chic Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039004', N'Scarlet Chic Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039005', N'Scarlet Chic Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039006', N'Scarlet Chic Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64039007', N'Scarlet Chic Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040001', N'Radiant Wedding Costume Adornment [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040002', N'Radiant Wedding Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040003', N'Radiant Wedding Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040004', N'Radiant Wedding Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040005', N'Radiant Wedding Costume Dress [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040006', N'Radiant Wedding Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64040007', N'Radiant Wedding Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041001', N'Skull Rider Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041002', N'Skull Rider Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041003', N'Skull Rider Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041004', N'Skull Rider Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041005', N'Skull Rider T-shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041006', N'Skull Rider Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64041007', N'Skull Rider Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042001', N'Red Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042002', N'Red Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042003', N'Red Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042004', N'Red Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042005', N'Red Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042006', N'Red Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64042007', N'Red Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043001', N'Blue Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043002', N'Blue Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043003', N'Blue Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043004', N'Blue Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043005', N'Blue Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043006', N'Blue Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64043007', N'Blue Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044001', N'White Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044002', N'White Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044003', N'White Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044004', N'White Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044005', N'White Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044006', N'White Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64044007', N'White Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045001', N'Brown Pirate Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045002', N'Brown Pirate Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045003', N'Brown Pirate Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045004', N'Brown Pirate Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045005', N'Brown Pirate Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045006', N'Brown Pirate Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64045007', N'Brown Pirate Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046001', N'White Phoenix''s Wings [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046002', N'White Phoenix''s Tail Feathers [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046003', N'White Phoenix''s Boots [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046004', N'White Phoenix''s Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046005', N'White Phoenix''s Fur Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046006', N'White Phoenix''s Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64046007', N'White Phoenix''s Plume [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047001', N'Yellow School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047002', N'Yellow School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047003', N'Yellow School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047004', N'Yellow School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047005', N'Yellow School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047006', N'Yellow School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64047007', N'Yellow School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048001', N'Red School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048002', N'Red School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048003', N'Red School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048004', N'Red School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048005', N'Red School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048006', N'Red School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64048007', N'Red School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049001', N'Black School Uniform Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049002', N'Black School Uniform Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049003', N'Black School Uniform Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049004', N'Black School Uniform Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049005', N'Black School Uniform Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049006', N'Black School Uniform Costume Ribbon [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64049007', N'Black School Uniform Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050001', N'Snake-Deco Mesh Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050002', N'Deviant Crease Lined Short Skirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050003', N'Deviant Crease Lined Gold Ornament Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050004', N'Red Frill Arm Warmer', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050005', N'Snake Patterned Corset', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050006', N'Double Amber Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64050007', N'Snake-Deco Long Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051001', N'Shining Ark Costume Wing [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051002', N'Shining Ark Costume Skirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051003', N'Shining Ark Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051004', N'Shining Ark Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051005', N'Shining Ark Costume Dress [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051006', N'Shining Ark Costume Necklace [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64051007', N'Shining Ark Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052001', N'White Flaming Costume Jacket [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052002', N'White Flaming Costume Pants [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052003', N'White Flaming Costume Shoes [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052004', N'White Flaming Costume Gloves [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052005', N'White Flaming Costume Shirt [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052006', N'White Flaming Costume Tie [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64052007', N'White Flaming Costume Hair [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101001', N'Dictator''s Costume(B) - Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101002', N'Black Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101003', N'Black Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101004', N'Black Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101005', N'Black Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101006', N'Black Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64101007', N'Black Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102001', N'Brown Dictator Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102002', N'Brown Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102003', N'Brown Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102004', N'Brown Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102005', N'Brown Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102006', N'Brown Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64102007', N'Brown Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103001', N'Brown Dictator Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103002', N'Brown Dictator Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103003', N'Brown Dictator Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103004', N'Brown Dictator Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103005', N'Brown Dictator Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103006', N'Brown Dictator Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64103007', N'Brown Dictator Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104001', N'Orange Color Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104002', N'Orange Color Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104003', N'Orange Color Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104004', N'Orange Color Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104005', N'Orange Color Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104006', N'Orange Color Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64104007', N'Orange Color Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105001', N'Blue Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105002', N'Blue Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105003', N'Blue Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105004', N'Blue Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105005', N'Blue Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105006', N'Blue Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64105007', N'Blue Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106001', N'Gray Hunter Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106002', N'Gray Hunter Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106003', N'Gray Hunter Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106004', N'Gray Hunter Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106005', N'Gray Hunter Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106006', N'Gray Hunter Costume Tie [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64106007', N'Gray Hunter Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107001', N'Radiant Wedding Costume Tuxedo [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107002', N'Radiant Wedding Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107003', N'Radiant Wedding Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107004', N'Radiant Wedding Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107005', N'Radiant Wedding Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107006', N'Radiant Wedding Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64107007', N'Radiant Wedding Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108001', N'Ghost Hunter Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108002', N'Ghost Hunter Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108003', N'Ghost Hunter Shoes', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108004', N'Ghost Hunter Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108005', N'Ghost Hunter Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108006', N'Ghost Hunter Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64108007', N'Ghost Hunter Hat', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109001', N'Red Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109002', N'Red Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109003', N'Red Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109004', N'Red Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109005', N'Red Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109006', N'Red Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64109007', N'Red Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110001', N'Blue Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110002', N'Blue Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110003', N'Blue Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110004', N'Blue Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110005', N'Blue Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110006', N'Blue Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64110007', N'Blue Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111001', N'White Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111002', N'White Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111003', N'White Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111004', N'White Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111005', N'White Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111006', N'White Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64111007', N'White Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112001', N'Orange Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112002', N'Orange Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112003', N'Orange Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112004', N'Orange Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112005', N'Orange Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112006', N'Orange Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64112007', N'Orange Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113001', N'White Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113002', N'White Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113003', N'White Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113004', N'White Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113005', N'White Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113006', N'White Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64113007', N'White Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114001', N'Purple Cowboy Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114002', N'Purple Cowboy Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114003', N'Purple Cowboy Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114004', N'Purple Cowboy Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114005', N'Purple Cowboy Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114006', N'Purple Cowboy Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64114007', N'Purple Cowboy Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115001', N'White School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115002', N'White School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115003', N'White School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115004', N'White School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115005', N'White School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115006', N'White School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64115007', N'White School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116001', N'Bluish Green School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116002', N'Bluish Green School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116003', N'Bluish Green School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116004', N'Bluish Green School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116005', N'Bluish Green School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116006', N'Bluish Green School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64116007', N'Bluish Green School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117001', N'Black School Uniform Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117002', N'Black School Uniform Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117003', N'Black School Uniform Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117004', N'Black School Uniform Costume Bracelet [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117005', N'Black School Uniform Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117006', N'Black School Uniform Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64117007', N'Black School Uniform Costume Hat [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118001', N'Snake Patterned Long Jacket', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118002', N'Snake Patterned Red Belt Pants', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118003', N'Snake Patterned Long Boots', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118004', N'Snake Patterned Gloves', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118005', N'Snake Pattered Shirt', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118006', N'Emerald Snake Patterned Necklace', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64118007', N'Black Two Block Hair', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119001', N'Shining Ark Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119002', N'Shining Ark Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119003', N'Shining Ark Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119004', N'Shining Ark Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119005', N'Shining Ark Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119006', N'Shining Ark Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64119007', N'Shining Ark Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120001', N'White Flaming Costume Jacket [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120002', N'White Flaming Costume Pants [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120003', N'White Flaming Costume Shoes [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120004', N'White Flaming Costume Gloves [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120005', N'White Flaming Costume Shirt [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120006', N'White Flaming Costume Necklace [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'64120007', N'White Flaming Costume Hair [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000001', N'Bramunez Militia Member', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000002', N'Skeleton Slaughterer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000003', N'Master of Fighting!', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000004', N'Daddy Chicken', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000005', N'Mommy Chicken', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000006', N'Wine Barrel Destroyer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000007', N'Contractor of the Beginning', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000008', N'Honorary Citizen', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000009', N'Curtis Killer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000010', N'Power of Patience', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000011', N'Delete Normal Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000012', N'Delete Special Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000013', N'Maintain Normal Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000014', N'Maintain Special Time Expiration Title', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000015', N'Title only for GM', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000016', N'Who''s Your Daddy?', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000017', N'Mother to Earth', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000018', N'Beach Bum', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000019', N'Title: 10th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000020', N'Title: 50th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000021', N'Title: 100th Floor Warrior', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000022', N'Title: 200th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000023', N'Title: 300th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000024', N'Title: 400th Floor Champion', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000025', N'Title: 500th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000026', N'Title: 600th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000027', N'Title: 700th Floor Hero', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000028', N'Title: 800th Floor Master', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000029', N'Title: 900th Floor Legend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000030', N'Title: 1000th Floor God', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000031', N'Scroll: Flame Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000032', N'Scroll: Ice Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000033', N'HP Up +10 of Shrine of Eternity', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000034', N'MP Up +10 of Shrine of Eternity', N'2', N'2', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000035', N'Scroll: Warrior''s Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000036', N'Scroll: Sorcerer''s Blessing', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000037', N'Title : Know-it-all', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000038', N'PvP AP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000039', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000040', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000041', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000042', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000043', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000044', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000045', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000046', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000047', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000048', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000049', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000050', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000051', N'Monster Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000052', N'Monster Riddle Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000053', N'Mini Gloves Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000054', N'Mini Butcher Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000055', N'Mini Wolfman Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000056', N'Mini Giant Mole Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000057', N'Mini Hammer Butcher Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000058', N'Mini Bone Collector Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000059', N'Mini Gorilla Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000060', N'Mini Haken Archer Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000061', N'Mini Guardian Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000062', N'Mini Templar Guardian Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000063', N'Mini Boozatron Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000064', N'Mini Red Gorilla Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000065', N'Mini Mole Bug Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000066', N'Mini Bone Dragon Seed', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000067', N'Friend with Curtis', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000068', N'Shadow Fabric Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000069', N'Shadow Fabric Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000070', N'Shadow Fabric Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000071', N'Shadow Fabric Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000072', N'Shadow Fabric Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000073', N'Shadow Fabric Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000074', N'Shadow Fabric Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000075', N'Shadow Leather Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000076', N'Shadow Leather Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000077', N'Shadow Leather Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000078', N'Shadow Leather Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000079', N'Shadow Leather Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000080', N'Shadow Leather Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000081', N'Shadow Leather Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000082', N'Shadow Chain Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000083', N'Shadow Chain Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000084', N'Shadow Chain Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000085', N'Shadow Chain Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000086', N'Shadow Chain Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000087', N'Shadow Chain Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000088', N'Shadow Chain Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000089', N'Shadow Plate Armor Package (Lv.20)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000090', N'Shadow Plate Armor Package (Lv.25)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000091', N'Shadow Plate Armor Package (Lv.30)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000092', N'Shadow Plate Armor Package (Lv.35)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000093', N'Shadow Plate Armor Package (Lv.40)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000094', N'Shadow Plate Armor Package (Lv.45)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000095', N'Shadow Plate Armor Package (Lv.50)', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000096', N'Shadow Armor Package (Lv.20)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000097', N'Shadow Armor Package (Lv.25)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000098', N'Shadow Armor Package (Lv.30)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000099', N'Shadow Armor Package (Lv.35)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000100', N'Shadow Armor Package (Lv.40)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000101', N'Shadow Armor Package (Lv.45)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000102', N'Shadow Armor Package (Lv.50)', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000103', N'Recovery Potion of Eternity', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000104', N'Mana Potion of Eternity', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000105', N'Title: Partyholic', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000106', N'Title: Play With Me', N'2', N'0', N'0', N'20', N'5', N'30', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000107', N'Title: We Are One', N'2', N'0', N'0', N'20', N'5', N'40', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000108', N'Title: Carpe Diem', N'2', N'0', N'0', N'20', N'5', N'45', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000109', N'Title: Hard-Out', N'2', N'0', N'0', N'20', N'5', N'50', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000110', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000111', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000112', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000113', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000114', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000115', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000116', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000117', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000118', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000119', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000120', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000121', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000122', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000123', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000124', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000125', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000126', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000127', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000128', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000129', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000130', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000131', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000132', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000133', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000134', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000135', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000136', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000137', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000138', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000139', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000140', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000141', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000142', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000143', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000144', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000145', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000146', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000147', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000148', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000149', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000150', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000151', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000152', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000153', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000154', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000155', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000156', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000157', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000158', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000159', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000160', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000161', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000162', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000163', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000164', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000165', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000166', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000167', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000168', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000169', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000170', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000171', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000172', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000173', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000174', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000175', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000176', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000177', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000178', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000179', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000180', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000181', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000182', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000183', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000184', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000185', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000186', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000187', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000188', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000189', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000190', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000191', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000192', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000193', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000194', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000195', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000196', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000197', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000198', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000199', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000200', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000201', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000202', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000203', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000204', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000205', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000206', N'Title: Pitapat', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000207', N'Title: Joyful cheer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000208', N'Title: Birthday bless', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000209', N'Title: Romantic song', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000210', N'Title: Sad mind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000211', N'Title: I want to be alone', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000212', N'Title: Darn', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000213', N'Title: It''s annoying', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000214', N'Title: Running while sleeping', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000215', N'Title: Busy as a bee', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000216', N'Title: Calm weekend', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000217', N'Title: So so', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000218', N'Title-giving item :Pitapat', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000219', N'Title-giving item :Joyful cheer', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000220', N'Title-giving item :Birthday bless', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000221', N'Title-giving item :Romantic song', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000222', N'Title-giving item :Sad mind', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000223', N'Title-giving item :I want to be alone', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000224', N'Title-giving item :Darn', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000225', N'Title-giving item :It''s annoying', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000226', N'Title-giving item :Running while sleeping', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000227', N'Title-giving item :Busy as a bee', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000228', N'Title-giving item :Calm weekend', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70000229', N'Title-giving item :So so', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002001', N'Trick or Treat (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002002', N'Trick or Treat (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002003', N'Trick or Treat (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002004', N'Trick or Treat (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002005', N'Trick or Treat (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002006', N'Trick or Treat (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002007', N'Trick or Treat (1 Year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002011', N'Title : Jingle Bell Rocker (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002012', N'Title : Jingle Bell Rocker (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002013', N'Title : Jingle Bell Rocker (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002014', N'Title : Jingle Bell Rocker (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002015', N'Title : Jingle Bell Rocker (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002016', N'Title : Jingle Bell Rocker (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002017', N'Title : Jingle Bell Rocker (1 Year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002018', N'Title : Keyboard Warrior (1 Day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002019', N'Title : Keyboard Warrior (3 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002020', N'Title : Keyboard Warrior (7 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002021', N'Title : Keyboard Warrior (15 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002022', N'Title : Keyboard Warrior (30 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002023', N'Title : Keyboard Warrior (60 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002024', N'Title : Keyboard Warrior (90 Days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002025', N'Title : Greatly Joyful (1 day)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002026', N'Title : Joy (3 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002027', N'Title : Single as usual (7 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002028', N'Title : Status Quo (30 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002029', N'Title : Winfall (60 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002030', N'Title : Luck (90 days)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002031', N'Title : Excellent Luck (1 year)', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002032', N'Seed of Life', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002033', N'Gem Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002034', N'Potion Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002035', N'Mithril Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002036', N'Mineral Water', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002037', N'Gem Seed''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002038', N'Potion Seed''s Gift', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002039', N'Summon Pet : Charles', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002040', N'Extracted Red Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002041', N'Extracted Blue Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002042', N'Extracted Yellow Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002043', N'Extracted Green Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002044', N'Extracted Grey Gem', N'2', N'0', N'0', N'29', N'4', N'1', N'1000', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002045', N'Wrinkled Seed of Life', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002046', N'Wrinkled Gem Seed', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002047', N'Wrinkled Seed of Potion', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70002048', N'Wrinkled Seed of Mithril', N'3', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003000', N'Great Seed', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003001', N'Seed Lv.1', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003002', N'Seed Lv.2', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003003', N'Seed Lv.3', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003004', N'Seed Lv.4', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003005', N'Seed Lv.5', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003006', N'Seed Lv.6', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003007', N'Seed Lv.7', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003008', N'Seed Lv.8', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003009', N'Seed Lv.9', N'2', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003051', N'Mineral Water Lv.1', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003052', N'Mineral Water Lv.2', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003053', N'Mineral Water Lv.3', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003054', N'Mineral Water Lv.4', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003055', N'Mineral Water Lv.5', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003056', N'Mineral Water Lv.6', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003057', N'Mineral Water Lv.7', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003058', N'Mineral Water Lv.8', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003059', N'Mineral Water Lv.9', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003101', N'Upgrade Cube Lv.1', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003102', N'Upgrade Cube Lv.2', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003103', N'Upgrade Cube Lv.3', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003104', N'Upgrade Cube Lv.4', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003105', N'Upgrade Cube Lv.5', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003106', N'Upgrade Cube Lv.6', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003107', N'Upgrade Cube Lv.7', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003108', N'Upgrade Cube Lv.8', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003109', N'Upgrade Cube Lv.9', N'3', N'0', N'0', N'15', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003201', N'Great Potion Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003202', N'Great Potion Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003211', N'Great Potion Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003212', N'Great Potion Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003221', N'Great Potion Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003222', N'Great Potion Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003231', N'Great Potion Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003232', N'Great Potion Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003301', N'Great Scroll Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003302', N'Great Scroll Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003311', N'Great Scroll Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003312', N'Great Scroll Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003321', N'Great Scroll Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003322', N'Great Scroll Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003331', N'Great Scroll Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003332', N'Great Scroll Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003401', N'Great Box Lv.1-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003402', N'Great Box Lv.1-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003411', N'Great Box Lv.2-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003412', N'Great Box Lv.2-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003421', N'Great Box Lv.3-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003422', N'Great Box Lv.3-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003431', N'Great Box Lv.4-1', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'70003432', N'Great Box Lv.4-2', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000001', N'Golden Seal Scout Team', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000002', N'PvP Guardian Knight', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000003', N'Specialist ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000004', N'Cool as Ice', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000005', N'Smokin'' Hot', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000006', N'Hardcore', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000007', N'Awesome', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000008', N'Mad Skills', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'71000009', N'Like a Boss', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000000', N'Worst Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'10', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000001', N'Poor Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'5', N'100', N'0', N'0', N'0', N'1', N'75', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000002', N'Mid-grade Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'10', N'100', N'0', N'0', N'0', N'1', N'180', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000003', N'Great Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'15', N'100', N'0', N'0', N'0', N'1', N'330', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000004', N'Best Pet''s HP Potion', N'2', N'0', N'0', N'13', N'5', N'20', N'100', N'0', N'0', N'0', N'1', N'500', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000005', N'Poor Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'25', N'100', N'0', N'0', N'0', N'1', N'700', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000006', N'Mid-Grade Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'30', N'100', N'0', N'0', N'0', N'1', N'1000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000007', N'Great Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'35', N'100', N'0', N'0', N'0', N'1', N'1300', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'75000008', N'Best Pet''s HP Elixir', N'2', N'0', N'0', N'13', N'5', N'40', N'100', N'0', N'0', N'0', N'1', N'1600', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000000', N'Epic Ether of Change', N'2', N'0', N'0', N'16', N'6', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000001', N'Unique Ether of Change', N'2', N'0', N'0', N'16', N'5', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000002', N'Rare Ether of Change', N'2', N'0', N'0', N'16', N'4', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000003', N'Magic Ether of Change', N'2', N'0', N'0', N'16', N'2', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000004', N'Normal Ether of Change', N'2', N'0', N'0', N'16', N'1', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000005', N'Frantz Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000006', N'Frantz Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000007', N'Frantz Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000008', N'Frantz Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000009', N'Frantz Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000010', N'Frantz Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000011', N'Frantz Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000012', N'Angela Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000013', N'Angela Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000014', N'Angela Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000015', N'Angela Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000016', N'Angela Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000017', N'Angela Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000018', N'Angela Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000019', N'Tude Coat Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000020', N'Tude Pants Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000021', N'Tude Shoes Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000022', N'Tude Gloves Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000023', N'Tude Shirt Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000024', N'Tude Tie Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000025', N'Tude Hair Costume Pack', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000026', N'Gold Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000027', N'Silver Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000028', N'Bronze Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000029', N'Effect Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000030', N'Item Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000031', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000032', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000033', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000034', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000035', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000036', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000037', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000038', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000039', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000040', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000041', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000042', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000043', N'Powerful HP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000044', N'Powerful MP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000045', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000046', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000047', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000048', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000049', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000050', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000051', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000052', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000053', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000054', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000055', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000056', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000057', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000058', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000059', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000060', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000061', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000062', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000063', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000064', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000065', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000066', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000067', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000068', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000069', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000070', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000071', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000072', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000073', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000074', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000075', N'Costume Option', N'2', N'0', N'0', N'16', N'2', N'5', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000076', N'World Megaphone', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000077', N'Reset Skill Points', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000078', N'Reset PvP Score', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000079', N'Save 100 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000080', N'Portable Warehouse', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000081', N'Expand Personal Warehouse', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000082', N'Resurrection Scroll x 10', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000083', N'Save 100 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000084', N'Full-Strength Adhesive ', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000085', N'Level Up Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000086', N'Gold Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000087', N'Master Package [90 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000088', N'Save 300 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000089', N'Save 300 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000090', N'Save 500 Stamina', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000091', N'Save 500 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000092', N'Small Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000093', N'Medium Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000094', N'Large Costume Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000095', N'Pro Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000096', N'Gold Package [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000097', N'Master Package [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000098', N'Express Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000099', N'Gold Package [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000100', N'Master Package [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000101', N'Colorful Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000102', N'Powerful HP Recovery Potion [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000103', N'Powerful HP Recovery Potion [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000104', N'Full Equipment Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000105', N'Equipment Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000106', N'Frantz Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000107', N'Frantz Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000108', N'Frantz Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000109', N'Frantz Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000110', N'Frantz Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000111', N'Frantz Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000112', N'Frantz Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000113', N'Angela Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000114', N'Angela Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000115', N'Angela Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000116', N'Angela Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000117', N'Angela Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000118', N'Angela Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000119', N'Angela Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000120', N'Tude Coat Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000121', N'Tude Pants Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000122', N'Tude Shoes Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000123', N'Tude Gloves Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000124', N'Tude Shirt Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000125', N'Tude Tie Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000126', N'Tude Hair Costume Pack [Trial]', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000127', N'Green Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000128', N'Yellow Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000129', N'Blue Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000130', N'Red Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000131', N'Frantz Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000132', N'Frantz Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000133', N'Frantz Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000134', N'Frantz Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000135', N'Frantz Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000136', N'Frantz Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000137', N'Frantz Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000138', N'Angela Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000139', N'Angela Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000140', N'Angela Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000141', N'Angela Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000142', N'Angela Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000143', N'Angela Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000144', N'Angela Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000145', N'Tude Coat Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000146', N'Tude Pants Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000147', N'Tude Shoes Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000148', N'Tude Gloves Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000149', N'Tude Shirt Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000150', N'Tude Tie Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000151', N'Tude Hair Costume Pack B', N'5', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000152', N'World Megaphone [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000153', N'Gold Deacon Coat [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000154', N'Gold Deacon Pants [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000155', N'Gold Deacon Shoes [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000156', N'Gold Deacon Gloves [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000157', N'Gold Deacon Shirt [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000158', N'Gold Deacon Tie [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000159', N'Gold Deacon Hair [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000160', N'Imperial Officer Coat [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000161', N'Imperial Officer Pants [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000162', N'Imperial Officer Shoes [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000163', N'Imperial Officer Gloves [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000164', N'Imperial Officer Shirt [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000165', N'Imperial Officer Tie [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000166', N'Imperial Officer Hair [Frantz] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000167', N'Cowgirl Jacket [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000168', N'Cowgirl Skirt [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000169', N'Cowgirl Shoes [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000170', N'Cowgirl Gloves [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000171', N'Cowgirl Blouse [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000172', N'Cowgirl Tie [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000173', N'Cowgirl Hair [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000174', N'Princess Jacket [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000175', N'Princess Skirt [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000176', N'Princess Shoes [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000177', N'Princess Gloves [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000178', N'Princess Blouse [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000179', N'Princess Tie [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000180', N'Afro Hair [Angela] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000181', N'Pin-Striped Punk Coat [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000182', N'Pin-Striped Punk Pants [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000183', N'Pin-Striped Punk Shoes [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000184', N'Pin-Striped Punk Gloves [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000185', N'Pin-Striped Punk Shirt [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000186', N'Pin-Striped Punk Necklace [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000187', N'Pin-Striped Punk Hair [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000188', N'Stylish Cellmate Coat [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000189', N'Stylish Cellmate Pants [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000190', N'Stylish Cellmate Shoes [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000191', N'Stylish Cellmate Gloves [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000192', N'Stylish Cellmate Shirt [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000193', N'Stylish Cellmate Necklace [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000194', N'Stylish Cellmate Hair [Tude] [Trial]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000195', N'Resurrection Scroll x 10 [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000196', N'Save 100 Stamina [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000197', N'Save 100 Stamina [charge complete]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000198', N'Colorful Gem Box [Trial]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000199', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000200', N'Reset Skill Points [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000201', N'Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000202', N'Weapon Repair Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000203', N'+5 Weapon Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000204', N'Powerful AP Recovery Potion', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000205', N'Elite Booster Pack', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000206', N'Poison''s Secret Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000207', N'+10 Weapon Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000208', N'Gem Socket Punch', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000209', N'Buff Scroll 1', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000210', N'Buff Scroll 2', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000211', N'Buff Scroll 3', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000212', N'Box Package', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000213', N'Summer Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000214', N'Summer Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000215', N'Summer Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000216', N'Summer Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000217', N'Golden Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000218', N'Golden Pattern Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000219', N'Alchemist''s Jar', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000220', N'Magic Chest of Change', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000221', N'Random Costume Pack', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000222', N'+5 Armor Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000223', N'+10 Armor Enchant Kit', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000224', N'Renaming Contract', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000225', N'Golden Hearts', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000226', N'Random Frantz Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000227', N'Random Angela Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000228', N'Random Tude Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000229', N'Random Natasha Costume Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000230', N'All Character Costume Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000231', N'Costume Random Box Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000232', N'Costume Random Box Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000233', N'Costume Random Box Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000234', N'Costume Random Box Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000235', N'Costume Random Box Package [All Character]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000236', N'White Party Item Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000237', N'White Star Pattern Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000238', N'White Wanderer Item [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000239', N'White Feather Item Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000240', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000241', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000242', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000243', N'Create Natasha Avatar', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000244', N'White Party Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000245', N'White Star Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000246', N'White Wanderer Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000247', N'White Feather Item Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000248', N'Lucky Alchemist''s Jar', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000249', N'Thanksgiving Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000250', N'Thanksgiving Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000251', N'Thanksgiving Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000252', N'Thanksgiving Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000253', N'Avatar Costume Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000254', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000255', N'Avatar Special Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000256', N'Sky Blue Bird Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000257', N'Title : Rising Star!', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000258', N'Incredible Full-Strength Adhesive', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000259', N'Create Avatar: Leila Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000260', N'Angela Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000261', N'Tude Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000262', N'Natasha Avatar Create 2', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000263', N'Jack O''Lantern', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000264', N'Halloween Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000265', N'Halloween Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000266', N'Halloween Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000267', N'Halloween Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000268', N'Halloween Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000269', N'Avatar Special Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000270', N'Avatar Costume Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000271', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000272', N'Title: Heir to the Bloodwind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000273', N'Black Queen Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000274', N'Pet Recharger', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000275', N'Pet Renaming Contract', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000276', N'Summon Twin Pet', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000277', N'Costume Chest of Change', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000278', N'Pet: Momo', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000279', N'Pet Summon : Fighter', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000280', N'Summon Pet: Catty', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000281', N'Summon Pet: Pepe', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000282', N'Violent Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000283', N'Pink Fur Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000284', N'Black Leather Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000285', N'White Military Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000286', N'Black Flame Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000287', N'White Military Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000288', N'Violent Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000289', N'Pink Fur Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000290', N'Black Leather Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000291', N'White Military Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000292', N'Black Flame Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000293', N'White Military Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000294', N'Avatar Special Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000295', N'Avatar Costume Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000296', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000297', N'Title : Deal with the Devil', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000298', N'Purple Winter Costume Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000299', N'Holiday Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000300', N'Holiday Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000301', N'Holiday Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000302', N'Holiday Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000303', N'Holiday Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000304', N'Holiday Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000305', N'Holiday Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000306', N'Title: Nutcracker', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000307', N'Limited Edition Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000308', N'Limited Edition Package II', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000309', N'Liminted Edition Package III', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000310', N'Gem Socket Punch (Bonus)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000311', N'Magic Chest of Change (Bonus)', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000312', N'New Traditional Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000313', N'New Traditional Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000314', N'New Traditional Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000315', N'New Traditional Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000316', N'New Traditional Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000317', N'New Traditional Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000318', N'New Traditional Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000319', N'New Traditional Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000320', N'Title : Happy New Year', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000321', N'New Poison''s Secret Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000322', N'Liminted Edition Package IV', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000323', N'Avatar Special Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000324', N'Avatar Costume Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000325', N'Avatar Normal Package [Leila]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000326', N'Title : Heir to the Bloodwind', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000327', N'Black Floral Dress Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000328', N'+3 Armor Upgrade Pack', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000329', N'+6 Weapon Upgrade Pack', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000330', N'Extreme Booster Pack', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000331', N'Random Avatar Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000332', N'Avatar Creation [Leila] : North America', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000333', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000334', N'Newbie Ration Box [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000335', N'Red Golden Pattern Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000336', N'Violet Female Warrior Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000337', N'Yellow Lady Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000338', N'Red Golden Pattern Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000339', N'Blue Young Gentleman Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000340', N'Golden Pattern Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000341', N'Blue Space Battle Suit Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000342', N'Red Slide Slit Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000343', N'Brown Mafia Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000344', N'Black Gangster Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000345', N'White Snow Flower Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000346', N'Black Leather Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000347', N'Red Wandering Minstrel Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000348', N'Purple Boxing Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000349', N'Pink Sagunja[Plum] Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000350', N'White Nun Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000351', N'Red Gold Random Pack [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000352', N'Violet Amazon Random Pack [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000353', N'Yellow Lady Random Pack [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000354', N'Crimson Conjurer Random Pack [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000355', N'Little Blue-Blood Random Pack [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000356', N'Silver Sage Random Pack [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000357', N'Blue Star Random Pack [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000358', N'Scarlet Chic Random Pack [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000359', N'Brown Mafia Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000360', N'Black Gangster Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000361', N'White Snow Flower Random Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000362', N'Black Leather Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000363', N'Red Wandering Minstrel Random Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000364', N'Boxing Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000365', N'Pink Sagunja[Plum] Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000366', N'White Nun Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000367', N'Poisons Strange Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000368', N'Red Gold Box [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000369', N'Violet Amazon Box [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000370', N'Yellow Lady Box [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000371', N'Crimson Conjurer Box [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000372', N'Little Blue-Blood Box [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000373', N'Silver Sage Box [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000374', N'Blue Star Box [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000375', N'Scarlet Chic Box [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000376', N'Brown Mafia Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000377', N'Black Gangster Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000378', N'White Snow Flower Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000379', N'Black Leather Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000380', N'Red Wandering Minstrel Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000381', N'Purple Boxing Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000382', N'Pink Sagunja[Plum] Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000383', N'White Nun Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000391', N'Premium Avatar Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000392', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000393', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000394', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000395', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000396', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000397', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000398', N'Red Golden Pattern Random Package [Frantz] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000399', N'Violet Female Warrior Random Package [Roselle] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000400', N'Yellow Lady Random Package [Leila] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000401', N'Red Golden Pattern Random Package [Angela] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000402', N'Blue Young Gentleman Random Package [Edgar] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000403', N'Golden Pattern Random Package [Tude] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000404', N'Blue Space Battle Suit Random Package [Meilin] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000405', N'Red Side Slit Random Package [Natasha] x 10', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000406', N'Sky Blue Bird Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000407', N'Black Queen Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000408', N'Purple Winter Costume Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000409', N'Black Floral Dress Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000410', N'Summer Scuba Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000411', N'Summer Scuba Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000412', N'Summer Scuba Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000413', N'Summer Scuba Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000414', N'Summer Scuba Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000415', N'Summer Scuba Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000416', N'Summer Scuba Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000417', N'Summer Scuba Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000418', N'Expand Character Creation Slot', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000421', N'A Daily Party Objective Recharge Kit', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000422', N'Golden Seal Team''s Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000423', N'Summon Pet : Lulu', N'2', N'0', N'0', N'13', N'5', N'1', N'100', N'0', N'0', N'0', N'1', N'300000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000424', N'Summon Pet : Coco', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'100000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000425', N'Summon Pet : Yongyong', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000426', N'Black Dictator Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000428', N'Indigo Pirate Costume Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000429', N'Blue Pirate Costume Random Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000430', N'Black Pirate Costume Random Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000431', N'Red Pirate Costume Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000432', N'Brown Pirate Costume Random Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000433', N'Black Pirate Costume Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000434', N'Blue Pirate Costume Random Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000435', N'Brown Pirate Costume Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000436', N'Indigo Pirate Costume Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000437', N'Blue Pirate Costume Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000438', N'Black Pirate Costume Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000439', N'Red Pirate Costume Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000440', N'Brown Pirate Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000441', N'Black Pirate Costume Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000442', N'Blue Pirate Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000443', N'Brown Pirate Costume Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000444', N'Title : Last Member of the Underground Guild', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000445', N'Title: Dress Classy Dance Cheesy', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000446', N'Indigo Pirate Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000447', N'Blue Pirate Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000448', N'Black Pirate Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000449', N'Red Pirate Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000450', N'Brown Pirate Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000451', N'Black Pirate Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000452', N'Blue Pirate Random Package [Maylin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000453', N'Brown Pirate Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000454', N'Indigo Pirate Random Package 10 pcs [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000455', N'Blue Pirate Random Package 10 pcs [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000456', N'Black Pirate Random Package 10 pcs [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000457', N'Red Pirate Random Package 10 pcs [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000458', N'Brown Pirate Random Package 10 pcs [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000459', N'Black Pirate Random Package 10 pcs [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000460', N'Blue Pirate Random Package 10 pcs [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000461', N'Brown Pirate Random Package 10 pcs [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000462', N'Reset Skills [Limited Period] [3 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000463', N'Radiant Wedding Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000464', N'Radiant Wedding Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000465', N'Radiant Wedding Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000466', N'Radiant Wedding Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000467', N'Radiant Wedding Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000468', N'Radiant Wedding Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000469', N'Radiant Wedding Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000470', N'Radiant Wedding Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000471', N'Radiant Wedding Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000472', N'Expand Account Warehouse (6 Slots)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000473', N'Gem Extractor', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'2000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000474', N'Improved Gem Extractor', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'5000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000475', N'Gem Extractor [Protection]', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'4000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000476', N'Improved Gem Extractor [Protection]', N'2', N'0', N'0', N'39', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'10000000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000477', N'Title : I do I do', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000478', N'Avatar Costume Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000479', N'Avatar Normal Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000480', N'Avatar Costume Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000481', N'Avatar Normal Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000482', N'Avatar Costume Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000483', N'Avatar Normal Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000484', N'Avatar Special Package [Meilin]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000485', N'Create Avatar: Meilin Chen', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000486', N'Avatar Special Package [Roselle]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000487', N'Create Avatar: Roselle Vergerius', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000488', N'Avatar Special Package [Edgar]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000489', N'Create Avatar: Edgar Grosvenor', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000490', N'Reset Skills [Limited Period] [7 Days]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000491', N'Complete Skill Reset Package', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000492', N'Poison''s Halloween Pack [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000493', N'Poison''s Halloween Pack [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000494', N'Poison''s Halloween Pack [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000495', N'Poison''s Halloween Pack [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000496', N'Poison''s Halloween Pack [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000497', N'Poison''s Halloween Pack [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000498', N'Poison''s Halloween Pack [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000499', N'Poison''s Halloween Pack [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000500', N'Poison''s Halloween Pack [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000501', N'Title: Monster Masher', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000502', N'Brown Mafia Random Package [Frantz] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000503', N'Black Gangster Random Package [Roselle] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000504', N'White Snow Flower Random Package [Leila] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000505', N'Black Leather Random Package [Angela] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000506', N'Red Minstrel Random Package [Edgar] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000507', N'Purple Boxing Random Package [Tude] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000508', N'Pink ''Four Gracious Plants'' [Plum] Random Package [Maylin] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000509', N'White Nun Random Package [Natasha] 10ea', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000510', N'Title: Wild Inuit', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000511', N'Inuit Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000512', N'Inuit Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000513', N'Inuit Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000514', N'Inuit Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000515', N'Inuit Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000516', N'Inuit Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000517', N'Inuit Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000518', N'Inuit Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000519', N'Extreme Booster Pack[JPN]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000520', N'Save 50 Stamina [charge complete]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000521', N'Santa Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000522', N'Inuit Random Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000523', N'Santa Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000524', N'Inuit Random Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000525', N'Santa Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000526', N'Inuit Random Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000527', N'Santa Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000528', N'Inuit Random Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000529', N'White Cowboy Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000530', N'Indigo Pirate Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000531', N'White Cowgirl Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000532', N'Red Pirate Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000533', N'White Cowboy Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000534', N'Black Pirate Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000535', N'White Cowgirl Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000536', N'Brown Pirate Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000537', N'Poison''s Dim Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000538', N'Summon Pet : Yongyong', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'1500000', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000539', N'Blue Pirate Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000540', N'Title: Snake Charmer', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000541', N'Snake Pattern Package[Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000542', N'Snake Pattern Package[Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000543', N'Snake Pattern Package[Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000544', N'Snake Pattern Package[Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000545', N'Snake Pattern Package[Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000546', N'Snake Pattern Package[Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000547', N'Snake Pattern Package[Maylin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000548', N'Snake Pattern Package[Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000549', N'Snake Pattern Package[Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000550', N'Title: Shining Ark', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000551', N'Shining Ark Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000552', N'Shining Ark Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000553', N'Shining Ark Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000554', N'Shining Ark Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000555', N'Shining Ark Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000556', N'Furiously Burning Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000557', N'Furiously Burning Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000558', N'Furiously Burning Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000559', N'Furiously Burning Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000560', N'Furiously Burning Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000561', N'Black Chain Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000562', N'Black Opera Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000563', N'Black Fur Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000564', N'Black Casual Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000565', N'Black Feather Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000566', N'Shining Ark Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000567', N'Burning Red Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000568', N'Burning Red Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000569', N'Burning Red Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000570', N'Burning Red Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000571', N'Burning Red Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000572', N'Burning Blue Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000573', N'Burning Red Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000574', N'Burning White Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000575', N'Burning White Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000576', N'Burning White Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000577', N'Burning White Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000578', N'Burning White Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000579', N'Burning White Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000580', N'Burning White Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000581', N'White School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000582', N'Purple School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000583', N'Brown School Uniform Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000584', N'Black School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000585', N'Yellow School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000586', N'White School Uniform Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000587', N'White School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000588', N'Purple School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000589', N'Black School Uniform Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000590', N'Beige School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000591', N'Dark Brown School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000592', N'Black School Uniform Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000593', N'Dark Brown School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000594', N'Pink School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000595', N'Yellow School Uniform Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000596', N'Blue School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000597', N'Green School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000598', N'Purple School Uniform Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000599', N'Pink School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000600', N'Brown School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000601', N'White School Uniform Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000602', N'Yellow School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000603', N'Red School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000604', N'Black School Uniform Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000605', N'White School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000606', N'Green School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000607', N'Black School Uniform Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000608', N'Title: Chairman', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000609', N'Title: Principal', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000610', N'Title: Student Head', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000611', N'Title: President of the Student Council', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000612', N'Title: President', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000613', N'Title: Vice President', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000614', N'Title: Lead Manager', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000615', N'Title: You are a student and I am a teacher', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000616', N'Title: Schoolboy', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000617', N'Title: Bad Student', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000618', N'School Uniform Title Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000619', N'Navy Blue Dress Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000620', N'Navy Blue Female Warrior Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000621', N'Black Label Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000622', N'Black Tailcoat Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000623', N'Black Boxing Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000624', N'Black Flame Patterned Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000625', N'Black Cheongsam Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000626', N'White Blazing Costume Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000627', N'White Blazing Costume Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000628', N'White Blazing Costume Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000629', N'White Blazing Costume Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000630', N'White Blazing Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000631', N'White Blazing Costume Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000632', N'White Blazing Costume Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000633', N'White Blazing Costume Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000634', N'White Blazing Costume Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000635', N'White Blazing Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000636', N'White Blazing Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000637', N'White Blazing Costume Box [Leila]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000638', N'White Blazing Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000639', N'White Blazing Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000640', N'White Blazing Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000641', N'White Blazing Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000642', N'White Blazing Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000643', N'White Blazing Costume Box [Ian]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000644', N'White Blazing Costume Random Package [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000645', N'White Blazing Costume Random Package [Roselle]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000646', N'White Blazing Costume Random Package [Leila]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000647', N'White Blazing Costume Random Package [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000648', N'White Blazing Costume Random Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000649', N'White Blazing Costume Random Package [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000650', N'White Blazing Costume Random Package [Meilin]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000651', N'White Blazing Costume Random Package [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000652', N'White Blazing Costume Random Package [Ian]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000653', N'White Blazing Costume Random Package [Frantz] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000654', N'White Blazing Costume Random Package [Roselle] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000655', N'White Blazing Costume Random Package [Leila] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000656', N'White Blazing Costume Random Package [Angela] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000657', N'White Blazing Costume Random Package [Edgar] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000658', N'White Blazing Costume Random Package [Tude] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000659', N'White Blazing Costume Random Package [Meilin] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000660', N'White Blazing Costume Random Package [Natasha] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000661', N'White Blazing Costume Random Package [Ian] 10 Pieces', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000662', N'Purple Cross Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000663', N'Pink Lace Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000664', N'Orange Stripe Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000665', N'Red Bocchan Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000666', N'Green Retro Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000667', N'Yellow Four Gentleman [Kook] Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000668', N'Green Rider Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000669', N'Red Chain Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000670', N'Purple Opera Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000671', N'Pink Fur Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000672', N'Emerald Minstrel Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000673', N'Checked Casual Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000674', N'Pink Space Combat Suit Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000675', N'White Feather Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000676', N'White School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000677', N'White School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000678', N'Beige School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000679', N'Yellow School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000680', N'Green School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000681', N'White School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000682', N'Red School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000683', N'Purple School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000684', N'Yellow School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000685', N'Dark Brown School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000686', N'Pink School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000687', N'Purple School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000688', N'Pink School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000689', N'Yellow School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000690', N'Brown School Uniform Costume Box [Frantz]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000691', N'Black School Uniform Costume Box [Roselle]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000692', N'Black School Uniform Costume Box [Angela]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000693', N'Dark Brown School Uniform Costume Box [Edgar]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000694', N'Blue School Uniform Costume Box [Tude]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000695', N'Brown School Uniform Costume Box [Meilin]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80000696', N'Black School Uniform Costume Box [Natasha]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100000', N'Scroll: Physical Attack +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100001', N'Scroll: Physical Attack +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100002', N'Scroll: Physical Defense +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100003', N'Scroll: Physical Defense +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100004', N'Scroll: Magic Attack +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100005', N'Scroll: Magic Attack +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100006', N'Scroll: Magic Defense +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100007', N'Scroll: Magic Defense +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100008', N'Scroll: Increase Critical +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100009', N'Scroll: Increase Critical +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100010', N'Scroll: Increase Speed +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100011', N'Scroll: Increase Speed +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100012', N'Scroll: Increase HP +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100013', N'Scroll: Increase HP +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100014', N'Scroll: Increase MP +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100015', N'Scroll: Increase MP +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100016', N'Scroll: Critical Power +2%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100017', N'Scroll: Critical Power +5%', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100018', N'Physical Defense Scroll: Lv.9', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100019', N'Physical Defense Scroll: Lv.10', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100020', N'Physical Attack Scroll: Lv.1', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100021', N'Physical Attack Scroll: Lv.2', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100022', N'Physical Attack Scroll: Lv.3', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100023', N'Physical Attack Scroll: Lv.4', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100024', N'Physical Attack Scroll: Lv.5', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100025', N'Physical Attack Scroll: Lv.6', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100026', N'Physical Attack Scroll: Lv.7', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100027', N'Physical Attack Scroll: Lv.8', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100028', N'Physical Attack Scroll: Lv.9', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100029', N'Physical Attack Scroll: Lv.10', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100030', N'Scroll: 2x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100031', N'Scroll: 3x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100032', N'Scroll: 4x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100033', N'Scroll: 5x Experience', N'2', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100034', N'Conditional Selective Item : Character Weapon', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100035', N'Basic Fishing Rod Set', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100036', N'Bait1 : Cash Item', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'6', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100037', N'Bait2 : Precious Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100038', N'Bait3 : Less Precious Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'4', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100039', N'Bait4 : Regular Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'2', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100040', N'Bait5 : Cheap Bait', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'1', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100041', N'Frantz Facial [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100042', N'Basic Facial [Frantz]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100043', N'Basic Facial [Angela]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100044', N'Basic Facial [Tude]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100045', N'Basic Facial [Natasha]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100046', N'Basic Facial [Roselle]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100047', N'Basic Facial [Edgar]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100048', N'Basic Facial [Meilin]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100049', N'Basic Facial [Leila]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100050', N'Basic Facial [Ian]', N'5', N'0', N'0', N'18', N'6', N'1', N'0', N'0', N'0', N'2', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100101', N'Young Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'101', N'1', N'240', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100102', N'Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'102', N'1', N'480', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100103', N'Big Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'103', N'1', N'800', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100104', N'Giant Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'104', N'1', N'1200', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100105', N'King Earthworm', N'2', N'0', N'0', N'13', N'1', N'1', N'100', N'0', N'0', N'105', N'1', N'1600', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100111', N'Young Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'111', N'1', N'300', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100112', N'Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'112', N'1', N'600', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100113', N'Big Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'113', N'1', N'1000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100114', N'Giant Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'114', N'1', N'1500', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100115', N'King Shrimp', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'115', N'1', N'2000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100121', N'Lowest Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'121', N'1', N'500', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100122', N'Low Grade Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'122', N'1', N'1000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100123', N'Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'123', N'1', N'2000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100124', N'High Grade Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'124', N'1', N'3000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80100125', N'Highest Artificial Bait', N'2', N'0', N'0', N'13', N'4', N'1', N'100', N'0', N'0', N'125', N'1', N'5000', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101001', N'Hopfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101002', N'Mudfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101003', N'Catfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'30', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101004', N'Minnow', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'40')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101005', N'Lenok', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'60', N'60')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101006', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101007', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101008', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101009', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101010', N'', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101011', N'Kissing Gourami', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101012', N'Clownfish', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'50', N'50')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101013', N'Oscar', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'80', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101014', N'Cichlid', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'120', N'120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101015', N'Dwarf Puffer', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'160', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101016', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101017', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101018', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101019', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101020', N'', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101021', N'Arowana', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'100', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101022', N'Discus', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'190', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101023', N'Cleaner Shrimp', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'320', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101024', N'Porcupine Fish', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'490', N'490')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101025', N'Giant Mottled Eel', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'650', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101026', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101027', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101028', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101029', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101030', N'', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101031', N'Pink Dolphin', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'1370', N'1370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101032', N'Manta Ray', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'2740', N'2740')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101033', N'Unicorn Tang', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'4560', N'4560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101034', N'Lungfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'6840', N'6840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101035', N'Spearfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'9120', N'9120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101036', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101037', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101038', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101039', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101040', N'', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101041', N'Leafy Sea Dragon', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'20000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101042', N'Baby Viper', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40000', N'40000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101043', N'Lion''s Mane Jellyfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'70000', N'70000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101044', N'Giant Squid', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'100000', N'100000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101045', N'Sperm Whale', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'140000', N'140000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101046', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101047', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101048', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101049', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101050', N'', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101101', N'Marble Crayfish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'10', N'10')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101102', N'Gold Carp', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101103', N'Rainbow Trout', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'30', N'30')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101104', N'Paradise Fish', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'40', N'40')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101105', N'Axolotl', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'60', N'60')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101106', N'Fish6', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101107', N'Fish7', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101108', N'Fish8', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101109', N'Fish9', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101110', N'Fish10', N'3', N'0', N'0', N'60', N'1', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101111', N'Ramirezi', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'20', N'20')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101112', N'Piranha', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'50', N'50')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101113', N'Neon Tetra', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'80', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101114', N'Betta Fish', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'120', N'120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101115', N'Gaah', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'160', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101116', N'A little rare fish1', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101117', N'A little rare fish2', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101118', N'A little rare fish3', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101119', N'A little rare fish4', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101120', N'A little rare fish5', N'3', N'0', N'0', N'60', N'2', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101121', N'Pearl Oyster', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'100', N'100')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101122', N'Red Seastar', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'190', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101123', N'Jewel Sea Anemone', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'320', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101124', N'Ghost Scorpion Fish', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'490', N'490')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101125', N'Marine Turtle', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'650', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101126', N'A little rare fish1', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101127', N'A little rare fish2', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101128', N'A little rare fish3', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101129', N'A little rare fish4', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101130', N'A little rare fish5', N'3', N'0', N'0', N'60', N'4', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101131', N'Albacore Tuna', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'1370', N'1370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101132', N'French Angelfish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'2740', N'2740')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101133', N'Moray', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'4560', N'4560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101134', N'Flying Fish', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'6840', N'6840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101135', N'Baby Haken', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'9120', N'9120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101136', N'A little rare fish1', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101137', N'A little rare fish2', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101138', N'A little rare fish3', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101139', N'A little rare fish4', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101140', N'A little rare fish5', N'3', N'0', N'0', N'60', N'5', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101141', N'Goblin Shark', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'20000', N'20000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101142', N'Ocean Sunfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'40000', N'40000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101143', N'Blobfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'70000', N'70000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101144', N'Atlantic Footballfish', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'100000', N'100000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101145', N'Dumbo Octopus', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'150000', N'150000')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101146', N'A little rare fish1', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101147', N'A little rare fish2', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101148', N'A little rare fish3', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101149', N'A little rare fish4', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'80101150', N'A little rare fish5', N'3', N'0', N'0', N'60', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000001', N'"KRW 10', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000002', N'"KRW 20', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000003', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000004', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000005', N'"KRW 30', N'0', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000006', N'PPS-500', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000007', N'PPS-100', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000008', N'PPS-50', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000009', N'Lv. 20 Arrived', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000010', N'Lv. 20 Arrived 2', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000011', N'Lv. 20 Arrived 3', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000012', N'Destroyer ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000013', N'Guardian', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000014', N'Mini Stop', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000015', N'Mini Stop', N'2', N'0', N'0', N'20', N'5', N'20', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000016', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000017', N'Invite a Friend Event Reward', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000018', N'Movie Director of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000019', N'Art Director of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000020', N'Script Writer of Tomorrow', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000021', N'Rusty Art : Director''s Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000022', N'Rusty Art : Art Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000023', N'Rusty Art : Script Award', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000024', N'Hard Augment Crystal', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000025', N'Resurrection Scroll (set of three) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000026', N'Resurrection Scroll (set of five) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000027', N'Hard Work and Effort', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000028', N'Quiz King', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000029', N'Great augment stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000030', N'Battle Support Package', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000031', N'Veteran''s Supply Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000032', N'Scroll: 2x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000033', N'Scroll: 3x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000034', N'Scroll: 4x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000035', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000036', N'Title : e-stars', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000037', N'Decent AP recovery Potion', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000038', N'Sweet Potato Rice Cake', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000039', N'Purple Sweet Potato Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000040', N'White Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000041', N'Black Rice Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000042', N'Title: The Gobbler', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000043', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000044', N'Halloween Pumpkin Cupcake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000045', N'Halloween Chocolate Cookie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000046', N'Halloween Pecan Pie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000047', N'Halloween Apple Toffee', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000048', N'Eyeball Candy', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000049', N'Poison''s Spooky Letter', N'4', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000050', N'Poison''s Spooky Letter (Copy)', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000051', N'Poison''s Spooky Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000052', N'Stamp', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000053', N'Poison''s Useful Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000054', N'Snow Crystal', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000055', N'Santarium', N'3', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000056', N'Poison''s Cheerful Chest', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000057', N'Holiday Fruitcake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000058', N'Holiday Chiffon Cake', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000059', N'Holiday Butter Cookie', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000060', N'Holiday Strawberry Tart', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000061', N'Joheim''s Gift Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000062', N'Bronze Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000063', N'Silver Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000064', N'Gold Random Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000065', N'New Year''s Soup', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000066', N'New Year''s Juice', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000067', N'New Year''s Steak', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000068', N'New Year''s Vegetables', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000069', N'Hamburger Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000070', N'Title : 2012', N'2', N'0', N'0', N'20', N'6', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000071', N'Silk Pack', N'3', N'0', N'0', N'37', N'1', N'1', N'0', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000072', N'Lucky Bag', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000073', N'Dragon''s Scale', N'3', N'0', N'0', N'37', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000074', N'Dragon Costume Head [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000075', N'Dragon Costume Gloves [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000076', N'Dragon Costume Shoes [Frantz]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000077', N'Dragon Costume Head [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000078', N'Dragon Costume Gloves [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000079', N'Dragon Costume Shoes [Angela]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000080', N'Dragon Costume Head [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000081', N'Dragon Costume Gloves [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000082', N'Dragon Costume Shoes [Tude]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000083', N'Dragon Costume Head [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000084', N'Dragon Costume Gloves [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000085', N'Dragon Costume Shoes [Natasha]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000086', N'Dragon Head Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000087', N'Dragon Gloves Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000088', N'Dragon Shoes Guarantee Card', N'4', N'0', N'0', N'15', N'1', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000089', N'Milk Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000090', N'Strawberry Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000091', N'Almond Chocolate Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000092', N'Pet Booster Food (500)', N'3', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000093', N'Scroll: 5x Experience', N'2', N'0', N'0', N'13', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'81000094', N'Pet Booster Food (1000)', N'3', N'0', N'0', N'16', N'2', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000001', N'Powerful AP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000002', N'Powerful HP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000003', N'Powerful MP Recovery Potion [Event}', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000004', N'Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000005', N'Renaming Contract [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000006', N'Portable Warehouse [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000007', N'Expand Personal Warehouse (6 Slots) [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000008', N'Reset PvP Score [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000009', N'Yellow Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000010', N'Colorful Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000011', N'Large Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000012', N'Level Up Package [7 Days] [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000013', N'Gem Socket Punch [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000014', N'Rare Ether of Change [Event]', N'2', N'0', N'0', N'16', N'4', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000015', N'Unique Ether of Change [Event]', N'2', N'0', N'0', N'16', N'5', N'1', N'0', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000016', N'Resurrection Scroll x 10 [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000017', N'Red Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000018', N'Poison''s Secret Box [Event]', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000019', N'Small Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000020', N'Reset Skill Points [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000021', N'Incredible Full-Strength Adhesive [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000022', N'Newbie Ration Box [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000023', N'World Megaphone [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000024', N'Full Equipment Repair Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000025', N'Medium Costume Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000026', N'Equipment Repair Kit [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000027', N'Green Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000028', N'Golden Hearts [Event]', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000029', N'Blue Gem Box [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000030', N'Save 100 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000031', N'Save 300 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000032', N'Save 500 Stamina [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000033', N'Avatar Create [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000034', N'Avatar Create [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000035', N'Avatar Costume Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000036', N'Avatar Normal Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000037', N'Avatar Special Package [Meilin] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000038', N'Sky Blue Bird Package [Meilin] : [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000039', N'Avatar Special Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000040', N'Avatar Costume Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000041', N'Avatar Normal Package [Roselle] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000042', N'Black Queen Package [Roselle] : [Event]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000043', N'Expand Personal Warehouse (1 Slot)', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000044', N'Alchemist''s Jar [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000045', N'Magic Chest of Change [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000046', N'+5 Armor Enchant Kit [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000047', N'+10 Armor Enchant Kit [Event]', N'1', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'5', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000048', N'Avatar Special Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000049', N'Avatar Costume Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000050', N'Avatar Normal Package [Edgar] : [Event]', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000051', N'Meilin Chen Creator', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000052', N'Purple Winter Costume Package [Edgar]', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000053', N'Roselle Vergerius Creator', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'40', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000054', N'Golden Hearts', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'82000055', N'Title: BREAKERZ', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000001', N'PC Café Guardian', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000002', N'Newbie Ration Box', N'2', N'0', N'0', N'37', N'6', N'1', N'1000', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000003', N'Augment Stone', N'1', N'0', N'0', N'24', N'2', N'50', N'100', N'0', N'0', N'3', N'1', N'40', N'1')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000004', N'Green Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000005', N'Yellow Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000006', N'Blue Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000007', N'Red Gem Box', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000008', N'Incredible Full-Strength Adhesive', N'2', N'0', N'0', N'16', N'6', N'1', N'100', N'0', N'0', N'0', N'0', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000009', N'PC Café Coupon Box', N'2', N'0', N'0', N'13', N'6', N'1', N'100', N'0', N'0', N'0', N'1', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'83000010', N'PC Café Guardian [7 days]', N'2', N'0', N'0', N'20', N'5', N'1', N'0', N'0', N'0', N'0', N'10', N'0', N'0')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014001', N'Golden Seal''s Dark Blade', N'1', N'2', N'0', N'5', N'4', N'7', N'8000', N'1', N'3', N'1', N'2000', N'1080', N'178')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014002', N'Golden Seal''s Assault Sword', N'1', N'2', N'0', N'5', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014003', N'Golden Seal''s Lavinunce Edge', N'1', N'2', N'0', N'5', N'4', N'17', N'8000', N'1', N'3', N'1', N'2000', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014004', N'Golden Seal''s Demonic Blade', N'1', N'2', N'0', N'5', N'4', N'22', N'8000', N'1', N'3', N'1', N'2000', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014005', N'Golden Seal''s Al-Hajad', N'1', N'2', N'0', N'5', N'4', N'27', N'8000', N'1', N'3', N'1', N'2000', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014006', N'Golden Seal''s Infinity Reavers', N'1', N'2', N'0', N'5', N'4', N'32', N'8000', N'1', N'3', N'1', N'2000', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014007', N'Golden Seal''s Colossus Blade', N'1', N'2', N'0', N'5', N'4', N'37', N'8000', N'1', N'3', N'1', N'2000', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014008', N'Golden Seal''s Cursed Greed', N'1', N'2', N'0', N'5', N'4', N'42', N'8000', N'1', N'3', N'1', N'2000', N'16230', N'2678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014009', N'Golden Seal Team Al-Hazard', N'1', N'2', N'0', N'5', N'4', N'47', N'8000', N'1', N'3', N'1', N'2000', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014010', N'Golden Seal Team Dark Eyes', N'1', N'2', N'0', N'5', N'4', N'52', N'8000', N'1', N'3', N'1', N'2000', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90014011', N'Golden Seal Team''s Infinity Reavers', N'1', N'2', N'0', N'5', N'4', N'57', N'8000', N'1', N'3', N'1', N'2000', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015001', N'Golden Seal Team''s Sharp Blade', N'1', N'2', N'0', N'5', N'5', N'7', N'9000', N'1', N'3', N'1', N'2000', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015002', N'Golden Seal Team''s Shark Tooth', N'1', N'2', N'0', N'5', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015003', N'Golden Seal Team''s Dark Prince', N'1', N'2', N'0', N'5', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015004', N'Golden Seal Team''s Snare', N'1', N'2', N'0', N'5', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015005', N'Golden Seal Team''s Blood Moon', N'1', N'2', N'0', N'5', N'5', N'27', N'9000', N'1', N'3', N'1', N'2000', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015006', N'Golden Seal Team''s Navioo', N'1', N'2', N'0', N'5', N'5', N'32', N'9000', N'1', N'3', N'1', N'2000', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015007', N'Golden Seal Team''s Gram', N'1', N'2', N'0', N'5', N'5', N'37', N'9000', N'1', N'3', N'1', N'2000', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015008', N'Golden Seal Team''s Death Bringer', N'1', N'2', N'0', N'5', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015009', N'Golden Seal Team''s Caliburn', N'1', N'2', N'0', N'5', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015010', N'Golden Seal Team''s Tyrfing', N'1', N'2', N'0', N'5', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90015011', N'Golden Seal Team''s Dark Stream', N'1', N'2', N'0', N'5', N'5', N'57', N'9000', N'1', N'3', N'1', N'2000', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016001', N'Specialist''s Bone Blade', N'1', N'2', N'2', N'5', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016002', N'Specialist''s Glazed', N'1', N'2', N'2', N'5', N'6', N'20', N'10000', N'1', N'3', N'1', N'2000', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016003', N'Specialist''s Colada', N'1', N'2', N'2', N'5', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016004', N'Specialist''s Durendal', N'1', N'2', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016005', N'Specialist''s Arondite', N'1', N'2', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016006', N'Specialist''s Anelas', N'1', N'2', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016007', N'Specialist''s Death Caliver', N'1', N'2', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016008', N'Specialist''s Balisarda', N'1', N'2', N'2', N'5', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90016009', N'Specialist''s Juda', N'1', N'2', N'2', N'5', N'6', N'65', N'10000', N'1', N'3', N'1', N'2000', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024001', N'Golden Seal''s Tabar Jin Mace', N'1', N'2', N'0', N'6', N'4', N'12', N'8000', N'1', N'3', N'1', N'2200', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024002', N'Golden Seal''s Lumberjack', N'1', N'2', N'0', N'6', N'4', N'17', N'8000', N'1', N'3', N'1', N'2200', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024003', N'Golden Seal''s Kingsbane', N'1', N'2', N'0', N'6', N'4', N'22', N'8000', N'1', N'3', N'1', N'2200', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024004', N'Golden Seal''s Minotauros', N'1', N'2', N'0', N'6', N'4', N'27', N'8000', N'1', N'3', N'1', N'2200', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024005', N'Golden Seal''s Bloody Murderer', N'1', N'2', N'0', N'6', N'4', N'32', N'8000', N'1', N'3', N'1', N'2200', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024006', N'Golden Seal''s Bloody Axe', N'1', N'2', N'0', N'6', N'4', N'37', N'8000', N'1', N'3', N'1', N'2200', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024007', N'Golden Seal''s Abyss Roar', N'1', N'2', N'0', N'6', N'4', N'42', N'8000', N'1', N'3', N'1', N'2200', N'16570', N'2734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024008', N'Golden Seal Team Iron Slayer', N'1', N'2', N'0', N'6', N'4', N'47', N'8000', N'1', N'3', N'1', N'2200', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024009', N'Golden Seal Team Bloody Murderer', N'1', N'2', N'0', N'6', N'4', N'52', N'8000', N'1', N'3', N'1', N'2200', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90024010', N'Golden Seal Team''s Destruction', N'1', N'2', N'0', N'6', N'4', N'57', N'8000', N'1', N'3', N'1', N'2200', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025001', N'Golden Seal Team''s Ginger Axe', N'1', N'2', N'0', N'6', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025002', N'Golden Seal Team''s Fransica', N'1', N'2', N'0', N'6', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025003', N'Golden Seal Team''s Prokion', N'1', N'2', N'0', N'6', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025004', N'Golden Seal Team''s Spontoon', N'1', N'2', N'0', N'6', N'5', N'27', N'9000', N'1', N'3', N'1', N'2200', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025005', N'Golden Seal Team''s Grandis', N'1', N'2', N'0', N'6', N'5', N'32', N'9000', N'1', N'3', N'1', N'2200', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025006', N'Golden Seal Team''s Chancer', N'1', N'2', N'0', N'6', N'5', N'37', N'9000', N'1', N'3', N'1', N'2200', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025007', N'Golden Seal Team''s El-Nas', N'1', N'2', N'0', N'6', N'5', N'42', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025008', N'Golden Seal Team''s Earthquake', N'1', N'2', N'0', N'6', N'5', N'47', N'9000', N'1', N'3', N'1', N'2200', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025009', N'Golden Seal Team''s Grand Cross', N'1', N'2', N'0', N'6', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90025010', N'Golden Seal Team''s Gigantes', N'1', N'2', N'0', N'6', N'5', N'57', N'9000', N'1', N'3', N'1', N'2200', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026001', N'Specialist''s Assault Axe', N'1', N'2', N'2', N'6', N'6', N'10', N'10000', N'1', N'3', N'1', N'2200', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026002', N'Specialist''s Jair', N'1', N'2', N'2', N'6', N'6', N'20', N'10000', N'1', N'3', N'1', N'2200', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026003', N'Specialist''s Crushinator', N'1', N'2', N'2', N'6', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026004', N'Specialist''s Vajrayuda', N'1', N'2', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026005', N'Specialist''s Laevatain', N'1', N'2', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026006', N'Specialist''s Mjollnir', N'1', N'2', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026007', N'Specialist''s Amaterus', N'1', N'2', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026008', N'Specialist''s Abyss Lore', N'1', N'2', N'2', N'6', N'6', N'60', N'10000', N'1', N'3', N'1', N'2200', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90026009', N'Specialist''s Ouroboros', N'1', N'2', N'2', N'6', N'6', N'65', N'10000', N'1', N'3', N'1', N'2200', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034001', N'Golden Seal''s Spatha', N'1', N'2', N'0', N'7', N'4', N'7', N'8000', N'1', N'3', N'1', N'2500', N'1080', N'178')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034002', N'Golden Seal''s Orchid Sword', N'1', N'2', N'0', N'7', N'4', N'12', N'8000', N'1', N'3', N'1', N'2500', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034003', N'Golden Seal Team''s Misericorde', N'1', N'2', N'0', N'7', N'4', N'17', N'8000', N'1', N'3', N'1', N'2500', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034004', N'Golden Seal''s Demon Witch Sword', N'1', N'2', N'0', N'7', N'4', N'22', N'8000', N'1', N'3', N'1', N'2500', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034005', N'Golden Seal''s Tahelum', N'1', N'2', N'0', N'7', N'4', N'27', N'8000', N'1', N'3', N'1', N'2500', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034006', N'Golden Seal''s Exceed', N'1', N'2', N'0', N'7', N'4', N'32', N'8000', N'1', N'3', N'1', N'2500', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034007', N'Golden Seal''s Burster Blade', N'1', N'2', N'0', N'7', N'4', N'37', N'8000', N'1', N'3', N'1', N'2500', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034008', N'Golden Seal''s Winter Hearts', N'1', N'2', N'0', N'7', N'4', N'42', N'8000', N'1', N'3', N'1', N'2500', N'16230', N'2678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034009', N'Golden Seal Team Tathlum', N'1', N'2', N'0', N'7', N'4', N'47', N'8000', N'1', N'3', N'1', N'2500', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034010', N'Golden Seal Team Avengers', N'1', N'2', N'0', N'7', N'4', N'52', N'8000', N'1', N'3', N'1', N'2500', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90034011', N'Golden Seal Team''s Exceed', N'1', N'2', N'0', N'7', N'4', N'57', N'8000', N'1', N'3', N'1', N'2500', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035001', N'Golden Seal Team''s Sharp Magic Sword', N'1', N'2', N'0', N'7', N'5', N'7', N'9000', N'1', N'3', N'1', N'2500', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035002', N'Golden Seal Team''s Bansh', N'1', N'2', N'0', N'7', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035003', N'Golden Seal Team''s Vanquish', N'1', N'2', N'0', N'7', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035004', N'Golden Seal Team''s Pendulum', N'1', N'2', N'0', N'7', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035005', N'Golden Seal Team''s Chrysaor', N'1', N'2', N'0', N'7', N'5', N'27', N'9000', N'1', N'3', N'1', N'2500', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035006', N'Golden Seal Team''s Mimang', N'1', N'2', N'0', N'7', N'5', N'32', N'9000', N'1', N'3', N'1', N'2500', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035007', N'Golden Seal Team''s Niggling', N'1', N'2', N'0', N'7', N'5', N'37', N'9000', N'1', N'3', N'1', N'2500', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035008', N'Golden Seal Team''s Acuvence', N'1', N'2', N'0', N'7', N'5', N'42', N'9000', N'1', N'3', N'1', N'2500', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035009', N'Golden Seal Team''s Nagelling', N'1', N'2', N'0', N'7', N'5', N'47', N'9000', N'1', N'3', N'1', N'2500', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035010', N'Golden Seal Team''s Neggling', N'1', N'2', N'0', N'7', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90035011', N'Golden Seal Team''s Kalabog', N'1', N'2', N'0', N'7', N'5', N'57', N'9000', N'1', N'3', N'1', N'2500', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036001', N'Specialist''s Bone Magic Sword', N'1', N'2', N'2', N'7', N'6', N'10', N'10000', N'1', N'3', N'1', N'2500', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036002', N'Specialist''s Samuel', N'1', N'2', N'2', N'7', N'6', N'20', N'10000', N'1', N'3', N'1', N'2500', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036003', N'Specialist''s Schukref', N'1', N'2', N'2', N'7', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036004', N'Specialist''s Angervadil', N'1', N'2', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036005', N'Specialist''s Ascalon', N'1', N'2', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036006', N'Specialist''s Haute-Claire', N'1', N'2', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036007', N'Specialist''s Birmore', N'1', N'2', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036008', N'Specialist''s Gembringer', N'1', N'2', N'2', N'7', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90036009', N'Specialist''s Eiger', N'1', N'2', N'2', N'7', N'6', N'65', N'10000', N'1', N'3', N'1', N'2500', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044001', N'Golden Seal''s Phantom Scythe', N'1', N'2', N'0', N'8', N'4', N'12', N'8000', N'1', N'3', N'1', N'2600', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044002', N'Golden Seal''s Osprey', N'1', N'2', N'0', N'8', N'4', N'17', N'8000', N'1', N'3', N'1', N'2600', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044003', N'Golden Seal''s Wicked Scythe', N'1', N'2', N'0', N'8', N'4', N'22', N'8000', N'1', N'3', N'1', N'2600', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044004', N'Golden Seal''s Rosemary', N'1', N'2', N'0', N'8', N'4', N'27', N'8000', N'1', N'3', N'1', N'2600', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044005', N'Golden Seal''s Albatros', N'1', N'2', N'0', N'8', N'4', N'32', N'8000', N'1', N'3', N'1', N'2600', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044006', N'Golden Seal''s Hell-Judgment', N'1', N'2', N'0', N'8', N'4', N'37', N'8000', N'1', N'3', N'1', N'2600', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044007', N'Golden Seal''s Apocalypse', N'1', N'2', N'0', N'8', N'4', N'42', N'8000', N'1', N'3', N'1', N'2600', N'16570', N'2734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044008', N'Golden Seal Team Chaos', N'1', N'2', N'0', N'8', N'4', N'47', N'8000', N'1', N'3', N'1', N'2600', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044009', N'Golden Seal Team Albatross', N'1', N'2', N'0', N'8', N'4', N'52', N'8000', N'1', N'3', N'1', N'2600', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90044010', N'Golden Seal Team''s Silence', N'1', N'2', N'0', N'8', N'4', N'57', N'8000', N'1', N'3', N'1', N'2600', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045001', N'Golden Seal Team''s Sharp Phantom', N'1', N'2', N'0', N'8', N'5', N'12', N'9000', N'1', N'3', N'1', N'2600', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045002', N'Golden Seal Team''s Night-Hag', N'1', N'2', N'0', N'8', N'5', N'17', N'9000', N'1', N'3', N'1', N'2600', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045003', N'Golden Seal Team''s Al-Haena', N'1', N'2', N'0', N'8', N'5', N'22', N'9000', N'1', N'3', N'1', N'2600', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045004', N'Golden Seal Team''s Death Scythe', N'1', N'2', N'0', N'8', N'5', N'27', N'9000', N'1', N'3', N'1', N'2600', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045005', N'Golden Seal Team''s Canine', N'1', N'2', N'0', N'8', N'5', N'32', N'9000', N'1', N'3', N'1', N'2600', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045006', N'Golden Seal Team''s Schwarz-Hex', N'1', N'2', N'0', N'8', N'5', N'37', N'9000', N'1', N'3', N'1', N'2600', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045007', N'Golden Seal Team''s Achellus', N'1', N'2', N'0', N'8', N'5', N'42', N'9000', N'1', N'3', N'1', N'2600', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045008', N'Golden Seal Team''s Badhdh Cath', N'1', N'2', N'0', N'8', N'5', N'47', N'9000', N'1', N'3', N'1', N'2600', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045009', N'Golden Seal Team''s Fraiya', N'1', N'2', N'0', N'8', N'5', N'52', N'9000', N'1', N'3', N'1', N'2600', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90045010', N'Golden Seal Team''s Sirpidium', N'1', N'2', N'0', N'8', N'5', N'57', N'9000', N'1', N'3', N'1', N'2600', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046001', N'Specialist''s Grey Phantom', N'1', N'2', N'2', N'8', N'6', N'10', N'10000', N'1', N'3', N'1', N'2600', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046002', N'Specialist''s Blooming', N'1', N'2', N'2', N'8', N'6', N'20', N'10000', N'1', N'3', N'1', N'2600', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046003', N'Specialist''s Genocide', N'1', N'2', N'2', N'8', N'6', N'30', N'10000', N'1', N'3', N'1', N'2600', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046004', N'Specialist''s Al-kide', N'1', N'2', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046005', N'Specialist''s Sirius', N'1', N'2', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046006', N'Specialist''s Apocalypse', N'1', N'2', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046007', N'Specialist''s Saturn', N'1', N'2', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046008', N'Specialist''s Aintree', N'1', N'2', N'2', N'8', N'6', N'60', N'10000', N'1', N'3', N'1', N'2600', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90046009', N'Specialist''s Kaizen', N'1', N'2', N'2', N'8', N'6', N'65', N'10000', N'1', N'3', N'1', N'2600', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054001', N'Golden Seal''s Howler', N'1', N'2', N'0', N'9', N'4', N'7', N'8000', N'1', N'3', N'1', N'2300', N'1080', N'178')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054002', N'Golden Seal''s Envy', N'1', N'2', N'0', N'9', N'4', N'12', N'8000', N'1', N'3', N'1', N'2300', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054003', N'Golden Seal''s Jade Gauntlets', N'1', N'2', N'0', N'9', N'4', N'17', N'8000', N'1', N'3', N'1', N'2300', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054004', N'Golden Seal''s Black Rose', N'1', N'2', N'0', N'9', N'4', N'22', N'8000', N'1', N'3', N'1', N'2300', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054005', N'Golden Seal''s Spirit Keeper', N'1', N'2', N'0', N'9', N'4', N'27', N'8000', N'1', N'3', N'1', N'2300', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054006', N'Golden Seal''s Hammer Leech', N'1', N'2', N'0', N'9', N'4', N'32', N'8000', N'1', N'3', N'1', N'2300', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054007', N'Golden Seal''s Armor Breaker ', N'1', N'2', N'0', N'9', N'4', N'37', N'8000', N'1', N'3', N'1', N'2300', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054008', N'Golden Seal''s Wale-Wolf', N'1', N'2', N'0', N'9', N'4', N'42', N'8000', N'1', N'3', N'1', N'2300', N'16230', N'2678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054009', N'Golden Seal Team Spirit Keeper', N'1', N'2', N'0', N'9', N'4', N'47', N'8000', N'1', N'3', N'1', N'2300', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054010', N'Golden Seal Team Oxbreed', N'1', N'2', N'0', N'9', N'4', N'52', N'8000', N'1', N'3', N'1', N'2300', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90054011', N'Golden Seal Team''s Hammer Leech', N'1', N'2', N'0', N'9', N'4', N'57', N'8000', N'1', N'3', N'1', N'2300', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055001', N'Golden Seal Team''s Sharp Gauntlet', N'1', N'2', N'0', N'9', N'5', N'7', N'9000', N'1', N'3', N'1', N'2300', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055002', N'Golden Seal Team''s Shark Skin', N'1', N'2', N'0', N'9', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055003', N'Golden Seal Team''s Wolf Tale', N'1', N'2', N'0', N'9', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055004', N'Golden Seal Team''s Duve', N'1', N'2', N'0', N'9', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055005', N'Golden Seal Team''s Scavenger', N'1', N'2', N'0', N'9', N'5', N'27', N'9000', N'1', N'3', N'1', N'2300', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055006', N'Golden Seal Team''s Bex-Servant', N'1', N'2', N'0', N'9', N'5', N'32', N'9000', N'1', N'3', N'1', N'2300', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055007', N'Golden Seal Team''s War Crysis', N'1', N'2', N'0', N'9', N'5', N'37', N'9000', N'1', N'3', N'1', N'2300', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055008', N'Golden Seal Team''s Kornephoros', N'1', N'2', N'0', N'9', N'5', N'42', N'9000', N'1', N'3', N'1', N'2300', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055009', N'Golden Seal Team''s Scardi', N'1', N'2', N'0', N'9', N'5', N'47', N'9000', N'1', N'3', N'1', N'2300', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055010', N'Golden Seal Team''s Ifrit', N'1', N'2', N'0', N'9', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90055011', N'Golden Seal Team''s Nejad', N'1', N'2', N'0', N'9', N'5', N'57', N'9000', N'1', N'3', N'1', N'2300', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056001', N'Specialist''s Bone Gauntlet', N'1', N'2', N'2', N'9', N'6', N'10', N'10000', N'1', N'3', N'1', N'2300', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056002', N'Specialist''s Wakening', N'1', N'2', N'2', N'9', N'6', N'20', N'10000', N'1', N'3', N'1', N'2300', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056003', N'Specialist''s Inferno', N'1', N'2', N'2', N'9', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056004', N'Specialist''s Baowulfwolf', N'1', N'2', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056005', N'Specialist''s Hildebrant', N'1', N'2', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056006', N'Specialist''s Ginnungagap', N'1', N'2', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056007', N'Specialist''s The Cloud', N'1', N'2', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056008', N'Specialist''s Rebellion', N'1', N'2', N'2', N'9', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90056009', N'Specialist''s Remedy', N'1', N'2', N'2', N'9', N'6', N'65', N'10000', N'1', N'3', N'1', N'2300', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064001', N'Golden Seal''s Ghost Claw', N'1', N'2', N'0', N'10', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064002', N'Golden Seal''s Gleaming Claw', N'1', N'2', N'0', N'10', N'4', N'17', N'8000', N'1', N'3', N'1', N'2000', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064003', N'Golden Seal''s Shackled Talon', N'1', N'2', N'0', N'10', N'4', N'22', N'8000', N'1', N'3', N'1', N'2000', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064004', N'Golden Seal''s Slaughterer', N'1', N'2', N'0', N'10', N'4', N'27', N'8000', N'1', N'3', N'1', N'2000', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064005', N'Golden Seal''s Storm Rider', N'1', N'2', N'0', N'10', N'4', N'32', N'8000', N'1', N'3', N'1', N'2000', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064006', N'Golden Seal''s Croa Zephir', N'1', N'2', N'0', N'10', N'4', N'37', N'8000', N'1', N'3', N'1', N'2000', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064007', N'Golden Seal''s Demon-Hunt', N'1', N'2', N'0', N'10', N'4', N'42', N'8000', N'1', N'3', N'1', N'2000', N'16570', N'2734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064008', N'Golden Seal Team Dignity', N'1', N'2', N'0', N'10', N'4', N'47', N'8000', N'1', N'3', N'1', N'2000', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064009', N'Golden Seal Team Storm Rider', N'1', N'2', N'0', N'10', N'4', N'52', N'8000', N'1', N'3', N'1', N'2000', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90064010', N'Golden Seal Team''s Dual Ghost', N'1', N'2', N'0', N'10', N'4', N'57', N'8000', N'1', N'3', N'1', N'2000', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065001', N'Golden Seal Team''s Sharp Claw', N'1', N'2', N'0', N'10', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065002', N'Golden Seal Team''s Agne', N'1', N'2', N'0', N'10', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065003', N'Golden Seal Team''s Cat Foot', N'1', N'2', N'0', N'10', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065004', N'Golden Seal Team''s Dark Crow', N'1', N'2', N'0', N'10', N'5', N'27', N'9000', N'1', N'3', N'1', N'2000', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065005', N'Golden Seal Team''s Shadow-Killer', N'1', N'2', N'0', N'10', N'5', N'32', N'9000', N'1', N'3', N'1', N'2000', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065006', N'Golden Seal Team''s Kayser Knuckle', N'1', N'2', N'0', N'10', N'5', N'37', N'9000', N'1', N'3', N'1', N'2000', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065007', N'Golden Seal Team''s Rain Force', N'1', N'2', N'0', N'10', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065008', N'Golden Seal Team''s Deneve', N'1', N'2', N'0', N'10', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065009', N'Golden Seal Team''s Enneagram', N'1', N'2', N'0', N'10', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90065010', N'Golden Seal Team''s Radeath', N'1', N'2', N'0', N'10', N'5', N'57', N'9000', N'1', N'3', N'1', N'2000', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066001', N'Specialist''s Ghost Claw', N'1', N'2', N'2', N'10', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066002', N'Specialist''s Cloaker', N'1', N'2', N'2', N'10', N'6', N'20', N'10000', N'1', N'3', N'1', N'2000', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066003', N'Specialist''s Bagh Nakh', N'1', N'2', N'2', N'10', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066004', N'Specialist''s Berserk', N'1', N'2', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066005', N'Specialist''s Bloody-Mir', N'1', N'2', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066006', N'Specialist''s Asura', N'1', N'2', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066007', N'Specialist''s Coon-Broki', N'1', N'2', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066008', N'Specialist''s Daemon-Hunter', N'1', N'2', N'2', N'10', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90066009', N'Specialist''s Striker', N'1', N'2', N'2', N'10', N'6', N'65', N'10000', N'1', N'3', N'1', N'2000', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074001', N'Golden Seal''s Bolt Action', N'1', N'2', N'0', N'11', N'4', N'7', N'8000', N'1', N'3', N'1', N'2000', N'1080', N'178')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074002', N'Golden Seal''s Six Shooter', N'1', N'2', N'0', N'11', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074003', N'Golden Seal''s Gravity', N'1', N'2', N'0', N'11', N'4', N'17', N'8000', N'1', N'3', N'1', N'2000', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074004', N'Golden Seal''s Burning Worm', N'1', N'2', N'0', N'11', N'4', N'22', N'8000', N'1', N'3', N'1', N'2000', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074005', N'Golden Seal''s Hand Cannon', N'1', N'2', N'0', N'11', N'4', N'27', N'8000', N'1', N'3', N'1', N'2000', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074006', N'Golden Seal''s Dark Raven', N'1', N'2', N'0', N'11', N'4', N'32', N'8000', N'1', N'3', N'1', N'2000', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074007', N'Golden Seal''s Desire', N'1', N'2', N'0', N'11', N'4', N'37', N'8000', N'1', N'3', N'1', N'2000', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074008', N'Golden Seal''s Abyss Rapsody', N'1', N'2', N'0', N'11', N'4', N'42', N'8000', N'1', N'3', N'1', N'2000', N'16230', N'2678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074009', N'Golden Seal Team Renovation', N'1', N'2', N'0', N'11', N'4', N'47', N'8000', N'1', N'3', N'1', N'2000', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074010', N'Golden Seal Team Ignore', N'1', N'2', N'0', N'11', N'4', N'52', N'8000', N'1', N'3', N'1', N'2000', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90074011', N'Golden Seal Team''s Dark Raven', N'1', N'2', N'0', N'11', N'4', N'57', N'8000', N'1', N'3', N'1', N'2000', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075001', N'Golden Seal Team''s Sharp Device', N'1', N'2', N'0', N'11', N'5', N'7', N'9000', N'1', N'3', N'1', N'2000', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075002', N'Golden Seal Team''s Counter-Attack', N'1', N'2', N'0', N'11', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075003', N'Golden Seal Team''s Rapid', N'1', N'2', N'0', N'11', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075004', N'Golden Seal Team''s Sharp Shooter', N'1', N'2', N'0', N'11', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075005', N'Golden Seal Team''s 44 Magnum', N'1', N'2', N'0', N'11', N'5', N'27', N'9000', N'1', N'3', N'1', N'2000', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075006', N'Golden Seal Team''s Salamander', N'1', N'2', N'0', N'11', N'5', N'32', N'9000', N'1', N'3', N'1', N'2000', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075007', N'Golden Seal Team''s Desert Eagle', N'1', N'2', N'0', N'11', N'5', N'37', N'9000', N'1', N'3', N'1', N'2000', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075008', N'Golden Seal Team''s Valentine', N'1', N'2', N'0', N'11', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075009', N'Golden Seal Team''s Turn Red', N'1', N'2', N'0', N'11', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075010', N'Golden Seal Team''s Stylish', N'1', N'2', N'0', N'11', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90075011', N'Golden Seal Team''s Hell Singer', N'1', N'2', N'0', N'11', N'5', N'57', N'9000', N'1', N'3', N'1', N'2000', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076001', N'Specialist''s Device', N'1', N'2', N'2', N'11', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076002', N'Specialist''s Burning Action', N'1', N'2', N'2', N'11', N'6', N'20', N'10000', N'1', N'3', N'1', N'2000', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076003', N'Specialist''s Stardust', N'1', N'2', N'2', N'11', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076004', N'Specialist''s Berkana', N'1', N'2', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076005', N'Specialist''s Desperado', N'1', N'2', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076006', N'Specialist''s Twilight', N'1', N'2', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076007', N'Specialist''s Croix', N'1', N'2', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076008', N'Specialist''s Raymond', N'1', N'2', N'2', N'11', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90076009', N'Specialist''s Blur', N'1', N'2', N'2', N'11', N'6', N'65', N'10000', N'1', N'3', N'1', N'2000', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084001', N'Golden Seal''s Lever Action', N'1', N'2', N'0', N'12', N'4', N'12', N'8000', N'1', N'3', N'1', N'2200', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084002', N'Golden Seal''s Saddleback', N'1', N'2', N'0', N'12', N'4', N'17', N'8000', N'1', N'3', N'1', N'2200', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084003', N'Golden Seal''s Benelli', N'1', N'2', N'0', N'12', N'4', N'22', N'8000', N'1', N'3', N'1', N'2200', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084004', N'Golden Seal''s Blessed Musket', N'1', N'2', N'0', N'12', N'4', N'27', N'8000', N'1', N'3', N'1', N'2200', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084005', N'Golden Seal''s Contractor', N'1', N'2', N'0', N'12', N'4', N'32', N'8000', N'1', N'3', N'1', N'2200', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084006', N'Golden Seal''s Explorer', N'1', N'2', N'0', N'12', N'4', N'37', N'8000', N'1', N'3', N'1', N'2200', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084007', N'Golden Seal''s Bust Hold', N'1', N'2', N'0', N'12', N'4', N'42', N'8000', N'1', N'3', N'1', N'2200', N'16570', N'2734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084008', N'Golden Seal Team Fever-Shot', N'1', N'2', N'0', N'12', N'4', N'47', N'8000', N'1', N'3', N'1', N'2200', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084009', N'Golden Seal Team Contractor', N'1', N'2', N'0', N'12', N'4', N'52', N'8000', N'1', N'3', N'1', N'2200', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90084010', N'Golden Seal Team''s The Veteran', N'1', N'2', N'0', N'12', N'4', N'57', N'8000', N'1', N'3', N'1', N'2200', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085001', N'Golden Seal Team''s Sharp Action', N'1', N'2', N'0', N'12', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085002', N'Golden Seal Team''s Hawk Eye', N'1', N'2', N'0', N'12', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085003', N'Golden Seal Team''s Sonic Boon', N'1', N'2', N'0', N'12', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085004', N'Golden Seal Team''s Eraser', N'1', N'2', N'0', N'12', N'5', N'27', N'9000', N'1', N'3', N'1', N'2200', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085005', N'Golden Seal Team''s Liberate', N'1', N'2', N'0', N'12', N'5', N'32', N'9000', N'1', N'3', N'1', N'2200', N'10980', N'1811')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085006', N'Golden Seal Team''s Conquerer', N'1', N'2', N'0', N'12', N'5', N'37', N'9000', N'1', N'3', N'1', N'2200', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085007', N'Golden Seal Team''s Hell Fire', N'1', N'2', N'0', N'12', N'5', N'42', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085008', N'Golden Seal''s Armor Breaker ', N'1', N'2', N'0', N'12', N'5', N'47', N'9000', N'1', N'3', N'1', N'2200', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085009', N'Golden Seal Team''s Trace', N'1', N'2', N'0', N'12', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90085010', N'Golden Seal Team''s Serpent', N'1', N'2', N'0', N'12', N'5', N'57', N'9000', N'1', N'3', N'1', N'2200', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086001', N'Specialist''s Lever Action', N'1', N'2', N'2', N'12', N'6', N'10', N'10000', N'1', N'3', N'1', N'2200', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086002', N'Specialist''s Revive', N'1', N'2', N'2', N'12', N'6', N'20', N'10000', N'1', N'3', N'1', N'2200', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086003', N'Specialist''s Phlogiston', N'1', N'2', N'2', N'12', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086004', N'Specialist''s Hagaraz', N'1', N'2', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086005', N'Specialist''s Boreas', N'1', N'2', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086006', N'Specialist''s Jephiroth', N'1', N'2', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086007', N'Specialist''s Crimson Swear', N'1', N'2', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086008', N'Specialist''s Plainus', N'1', N'2', N'2', N'12', N'6', N'60', N'10000', N'1', N'3', N'1', N'2200', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90086009', N'Specialist''s Bandid Shot', N'1', N'2', N'2', N'12', N'6', N'65', N'10000', N'1', N'3', N'1', N'2200', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094001', N'Golden Seal Team Ailantus', N'1', N'2', N'0', N'55', N'4', N'7', N'8000', N'1', N'3', N'1', N'2000', N'1080', N'179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094002', N'Golden Seal Team Ramnus', N'1', N'2', N'0', N'55', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094003', N'Golden Seal Team Diospiros', N'1', N'2', N'0', N'55', N'4', N'17', N'8000', N'1', N'3', N'1', N'2000', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094004', N'Golden Seal Team Illex', N'1', N'2', N'0', N'55', N'4', N'22', N'8000', N'1', N'3', N'1', N'2000', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094005', N'Golden Seal Team Actinidia', N'1', N'2', N'0', N'55', N'4', N'27', N'8000', N'1', N'3', N'1', N'2000', N'7880', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094006', N'Golden Seal Team Betula', N'1', N'2', N'0', N'55', N'4', N'32', N'8000', N'1', N'3', N'1', N'2000', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094007', N'Golden Seal Team Prunus', N'1', N'2', N'0', N'55', N'4', N'37', N'8000', N'1', N'3', N'1', N'2000', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094008', N'Golden Seal Team Kapainus', N'1', N'2', N'0', N'55', N'4', N'42', N'8000', N'1', N'3', N'1', N'2000', N'16570', N'2735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094009', N'Golden Seal Team Vitis', N'1', N'2', N'0', N'55', N'4', N'47', N'8000', N'1', N'3', N'1', N'2000', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094010', N'Golden Seal Team Ribeth', N'1', N'2', N'0', N'55', N'4', N'52', N'8000', N'1', N'3', N'1', N'2000', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90094011', N'Golden Seal Team''s Strobe', N'1', N'2', N'0', N'55', N'4', N'57', N'8000', N'1', N'3', N'1', N'2000', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095001', N'Golden Seal Team Keened Twin Swords', N'1', N'2', N'0', N'55', N'5', N'7', N'9000', N'1', N'3', N'1', N'2000', N'1140', N'189')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095002', N'Golden Seal Team Ronisera', N'1', N'2', N'0', N'55', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095003', N'Golden Seal Team Laisium', N'1', N'2', N'0', N'55', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095004', N'Golden Seal Team Castanopsis', N'1', N'2', N'0', N'55', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095005', N'Golden Seal Team Cudrania', N'1', N'2', N'0', N'55', N'5', N'27', N'9000', N'1', N'3', N'1', N'2000', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095006', N'Golden Seal Team Yuonimus', N'1', N'2', N'0', N'55', N'5', N'32', N'9000', N'1', N'3', N'1', N'2000', N'10980', N'1812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095007', N'Golden Seal Team Deucia', N'1', N'2', N'0', N'55', N'5', N'37', N'9000', N'1', N'3', N'1', N'2000', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095008', N'Golden Seal Team Kornus', N'1', N'2', N'0', N'55', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095009', N'Golden Seal Team Paderia', N'1', N'2', N'0', N'55', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095010', N'Golden Seal Team Acer', N'1', N'2', N'0', N'55', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90095011', N'Golden Seal Team''s Lithido', N'1', N'2', N'0', N'55', N'5', N'57', N'9000', N'1', N'3', N'1', N'2000', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096001', N'Specialist Ailantus', N'1', N'2', N'2', N'55', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096002', N'Specialist Yuglans', N'1', N'2', N'2', N'55', N'6', N'20', N'10000', N'1', N'3', N'1', N'2000', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096003', N'Specialist Ritzia', N'1', N'2', N'2', N'55', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096004', N'Specialist Salix', N'1', N'2', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096005', N'Specialist Katalfa', N'1', N'2', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096006', N'Specialist Ligustrum', N'1', N'2', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096007', N'Specialist Occidental', N'1', N'2', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096008', N'Specialist Twin Swords Epic', N'1', N'2', N'2', N'55', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90096009', N'Specialist Twin Swords Epic', N'1', N'2', N'2', N'55', N'6', N'65', N'10000', N'1', N'3', N'1', N'2000', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114001', N'Golden Seal Team Aeumops', N'1', N'2', N'0', N'56', N'4', N'7', N'8000', N'1', N'3', N'1', N'2500', N'1080', N'179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114002', N'Golden Seal Team Peramequinum', N'1', N'2', N'0', N'56', N'4', N'12', N'8000', N'1', N'3', N'1', N'2500', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114003', N'Golden Seal Team Hippocideridae', N'1', N'2', N'0', N'56', N'4', N'17', N'8000', N'1', N'3', N'1', N'2500', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114004', N'Golden Seal Team Juvatus', N'1', N'2', N'0', N'56', N'4', N'22', N'8000', N'1', N'3', N'1', N'2500', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114005', N'Golden Seal Team Leucogaster', N'1', N'2', N'0', N'56', N'4', N'27', N'8000', N'1', N'3', N'1', N'2500', N'7880', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114006', N'Golden Seal Team Aserodon', N'1', N'2', N'0', N'56', N'4', N'32', N'8000', N'1', N'3', N'1', N'2500', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114007', N'Golden Seal Team Rapinesqui', N'1', N'2', N'0', N'56', N'4', N'37', N'8000', N'1', N'3', N'1', N'2500', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114008', N'Golden Seal Team Marianus', N'1', N'2', N'0', N'56', N'4', N'42', N'8000', N'1', N'3', N'1', N'2500', N'16570', N'2735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114009', N'Golden Seal Team Shirof Terra', N'1', N'2', N'0', N'56', N'4', N'47', N'8000', N'1', N'3', N'1', N'2500', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114010', N'Golden Seal Team Megarotis', N'1', N'2', N'0', N'56', N'4', N'52', N'8000', N'1', N'3', N'1', N'2500', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90114011', N'Golden Seal Team''s Plekotooth', N'1', N'2', N'0', N'56', N'4', N'57', N'8000', N'1', N'3', N'1', N'2500', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115001', N'Golden Seal Team Keened Glaive', N'1', N'2', N'0', N'56', N'5', N'7', N'9000', N'1', N'3', N'1', N'2500', N'1140', N'189')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115002', N'Golden Seal Team Borealis', N'1', N'2', N'0', N'56', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115003', N'Golden Seal Team Pormosus', N'1', N'2', N'0', N'56', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115004', N'Golden Seal Team Seminolus', N'1', N'2', N'0', N'56', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115005', N'Golden Seal Team Philotis', N'1', N'2', N'0', N'56', N'5', N'27', N'9000', N'1', N'3', N'1', N'2500', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115006', N'Golden Seal Team Pipistrelus', N'1', N'2', N'0', N'56', N'5', N'32', N'9000', N'1', N'3', N'1', N'2500', N'10980', N'1812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115007', N'Golden Seal Team Gigas', N'1', N'2', N'0', N'56', N'5', N'37', N'9000', N'1', N'3', N'1', N'2500', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115008', N'Golden Seal Team Megarophila', N'1', N'2', N'0', N'56', N'5', N'42', N'9000', N'1', N'3', N'1', N'2500', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115009', N'Golden Seal Team Cinereus', N'1', N'2', N'0', N'56', N'5', N'47', N'9000', N'1', N'3', N'1', N'2500', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115010', N'Golden Seal Team Noctivegans', N'1', N'2', N'0', N'56', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90115011', N'Golden Seal Team''s Kairoptera', N'1', N'2', N'0', N'56', N'5', N'57', N'9000', N'1', N'3', N'1', N'2500', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116001', N'Specialist Aeumops', N'1', N'2', N'2', N'56', N'6', N'10', N'10000', N'1', N'3', N'1', N'2500', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116002', N'Specialist Humeralis', N'1', N'2', N'2', N'56', N'6', N'20', N'10000', N'1', N'3', N'1', N'2500', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116003', N'Specialist Nicteride', N'1', N'2', N'2', N'56', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116004', N'Specialist Molosidae', N'1', N'2', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116005', N'Specialist Eduderma', N'1', N'2', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116006', N'Specialist Maculatum', N'1', N'2', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116007', N'Specialist Mormoph', N'1', N'2', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116008', N'Specialist Glaive Epic', N'1', N'2', N'2', N'56', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90116009', N'Specialist Glaive Epic', N'1', N'2', N'2', N'56', N'6', N'65', N'10000', N'1', N'3', N'1', N'2500', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134001', N'Golden Seal Team Lepture', N'1', N'2', N'0', N'57', N'4', N'7', N'8000', N'1', N'3', N'1', N'2300', N'1080', N'179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134002', N'Golden Seal Team Malpinus', N'1', N'2', N'0', N'57', N'4', N'12', N'8000', N'1', N'3', N'1', N'2300', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134003', N'Golden Seal Team Adustus', N'1', N'2', N'0', N'57', N'4', N'17', N'8000', N'1', N'3', N'1', N'2300', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134004', N'Golden Seal Team Pumosus', N'1', N'2', N'0', N'57', N'4', N'22', N'8000', N'1', N'3', N'1', N'2300', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134005', N'Golden Seal Team Hesperius', N'1', N'2', N'0', N'57', N'4', N'27', N'8000', N'1', N'3', N'1', N'2300', N'7880', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134006', N'Golden Seal Team Infuscus', N'1', N'2', N'0', N'57', N'4', N'32', N'8000', N'1', N'3', N'1', N'2300', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134007', N'Golden Seal Team Jabanikus', N'1', N'2', N'0', N'57', N'4', N'37', N'8000', N'1', N'3', N'1', N'2300', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134008', N'Golden Seal Team Premaebus', N'1', N'2', N'0', N'57', N'4', N'42', N'8000', N'1', N'3', N'1', N'2300', N'16570', N'2735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134009', N'Golden Seal Team Sumatransis', N'1', N'2', N'0', N'57', N'4', N'47', N'8000', N'1', N'3', N'1', N'2300', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134010', N'Golden Seal Team Dookunensis', N'1', N'2', N'0', N'57', N'4', N'52', N'8000', N'1', N'3', N'1', N'2300', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90134011', N'Golden Seal Team''s Diceros', N'1', N'2', N'0', N'57', N'4', N'57', N'8000', N'1', N'3', N'1', N'2300', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135001', N'Golden Seal Team Keened Demon Hands', N'1', N'2', N'0', N'57', N'5', N'7', N'9000', N'1', N'3', N'1', N'2300', N'1140', N'189')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135002', N'Golden Seal Team Aureus', N'1', N'2', N'0', N'57', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135003', N'Golden Seal Team Aljerensis', N'1', N'2', N'0', N'57', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135004', N'Golden Seal Team Antus', N'1', N'2', N'0', N'57', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135005', N'Golden Seal Team Vea', N'1', N'2', N'0', N'57', N'5', N'27', N'9000', N'1', N'3', N'1', N'2300', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135006', N'Golden Seal Team Crusemani', N'1', N'2', N'0', N'57', N'5', N'32', N'9000', N'1', N'3', N'1', N'2300', N'10980', N'1812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135007', N'Golden Seal Team Indicus', N'1', N'2', N'0', N'57', N'5', N'37', N'9000', N'1', N'3', N'1', N'2300', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135008', N'Golden Seal Team Rupaster', N'1', N'2', N'0', N'57', N'5', N'42', N'9000', N'1', N'3', N'1', N'2300', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135009', N'Golden Seal Team Naria', N'1', N'2', N'0', N'57', N'5', N'47', N'9000', N'1', N'3', N'1', N'2300', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135010', N'Golden Seal Team Liparius', N'1', N'2', N'0', N'57', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90135011', N'Golden Seal Team''s Bison', N'1', N'2', N'0', N'57', N'5', N'57', N'9000', N'1', N'3', N'1', N'2300', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136001', N'Specialist Lepture', N'1', N'2', N'2', N'57', N'6', N'10', N'10000', N'1', N'3', N'1', N'2300', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136002', N'Specialist Arkstos', N'1', N'2', N'2', N'57', N'6', N'20', N'10000', N'1', N'3', N'1', N'2300', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136003', N'Specialist Richaon', N'1', N'2', N'2', N'57', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136004', N'Specialist Lanixer', N'1', N'2', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136005', N'Specialist Dingo', N'1', N'2', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136006', N'Specialist Lupers', N'1', N'2', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136007', N'Specialist Wolverine', N'1', N'2', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136008', N'Specialist Demon Hands Epic', N'1', N'2', N'2', N'57', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90136009', N'Specialist Demon Hands Epic', N'1', N'2', N'2', N'57', N'6', N'65', N'10000', N'1', N'3', N'1', N'2300', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154001', N'Golden Seal Team Polifemus', N'1', N'2', N'0', N'58', N'4', N'7', N'8000', N'1', N'3', N'1', N'2000', N'1080', N'179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154002', N'Golden Seal Team Repidokelis', N'1', N'2', N'0', N'58', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154003', N'Golden Seal Team Kelodina', N'1', N'2', N'0', N'58', N'4', N'17', N'8000', N'1', N'3', N'1', N'2000', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154004', N'Golden Seal Team Clemis', N'1', N'2', N'0', N'58', N'4', N'22', N'8000', N'1', N'3', N'1', N'2000', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154005', N'Golden Seal Team Testudinidae', N'1', N'2', N'0', N'58', N'4', N'27', N'8000', N'1', N'3', N'1', N'2000', N'7880', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154006', N'Golden Seal Team Crisemis', N'1', N'2', N'0', N'58', N'4', N'32', N'8000', N'1', N'3', N'1', N'2000', N'10430', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154007', N'Golden Seal Team Kelidra', N'1', N'2', N'0', N'58', N'4', N'37', N'8000', N'1', N'3', N'1', N'2000', N'13330', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154008', N'Golden Seal Team Sudaemidura', N'1', N'2', N'0', N'58', N'4', N'42', N'8000', N'1', N'3', N'1', N'2000', N'16570', N'2735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154009', N'Golden Seal Team Kinosternon', N'1', N'2', N'0', N'58', N'4', N'47', N'8000', N'1', N'3', N'1', N'2000', N'20150', N'3325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154010', N'Golden Seal Team Onata', N'1', N'2', N'0', N'58', N'4', N'52', N'8000', N'1', N'3', N'1', N'2000', N'24060', N'3970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90154011', N'Golden Seal Team''s Musk Bag', N'1', N'2', N'0', N'58', N'4', N'57', N'8000', N'1', N'3', N'1', N'2000', N'28330', N'4674')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155001', N'Golden Seal Team Keened Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'7', N'9000', N'1', N'3', N'1', N'2000', N'1140', N'189')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155002', N'Golden Seal Team Terapene', N'1', N'2', N'0', N'58', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155003', N'Golden Seal Team Malaclemis', N'1', N'2', N'0', N'58', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155004', N'Golden Seal Team Lactopris', N'1', N'2', N'0', N'58', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155005', N'Golden Seal Team Kelis', N'1', N'2', N'0', N'58', N'5', N'27', N'9000', N'1', N'3', N'1', N'2000', N'8290', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155006', N'Golden Seal Team Hydromedusa', N'1', N'2', N'0', N'58', N'5', N'32', N'9000', N'1', N'3', N'1', N'2000', N'10980', N'1812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155007', N'Golden Seal Team Xiokelon', N'1', N'2', N'0', N'58', N'5', N'37', N'9000', N'1', N'3', N'1', N'2000', N'14030', N'2315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155008', N'Golden Seal Team Midas', N'1', N'2', N'0', N'58', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155009', N'Golden Seal Team Kareta', N'1', N'2', N'0', N'58', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155010', N'Golden Seal Team Selgata', N'1', N'2', N'0', N'58', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90155011', N'Golden Seal Team''s Leather Bag', N'1', N'2', N'0', N'58', N'5', N'57', N'9000', N'1', N'3', N'1', N'2000', N'29820', N'4920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156001', N'Specialist Demakelis', N'1', N'2', N'2', N'58', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'321')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156002', N'Specialist Repidokelis', N'1', N'2', N'2', N'58', N'6', N'20', N'10000', N'1', N'3', N'1', N'2000', N'5400', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156003', N'Specialist Kelodina', N'1', N'2', N'2', N'58', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156004', N'Specialist Clemis', N'1', N'2', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156005', N'Specialist Testudinidae', N'1', N'2', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156006', N'Specialist Crisemis', N'1', N'2', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156007', N'Specialist Clemis', N'1', N'2', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156008', N'Specialist Sudaemidura', N'1', N'2', N'2', N'58', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'90156009', N'Specialist Kinosternon', N'1', N'2', N'2', N'58', N'6', N'65', N'10000', N'1', N'3', N'1', N'2000', N'39640', N'6541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999991', N'Poor Cutlassfish', N'1', N'2', N'0', N'5', N'5', N'20', N'7500', N'1', N'3', N'1', N'2000', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999992', N'Cutlassfish', N'1', N'2', N'0', N'5', N'5', N'30', N'7500', N'1', N'3', N'1', N'2000', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999993', N'Great Cutlassfish', N'1', N'2', N'0', N'5', N'5', N'40', N'7500', N'1', N'3', N'1', N'2000', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999994', N'Poor Giant Tuna', N'1', N'2', N'0', N'7', N'5', N'20', N'7500', N'1', N'3', N'1', N'2500', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999995', N'Giant Tuna', N'1', N'2', N'0', N'7', N'5', N'30', N'7500', N'1', N'3', N'1', N'2500', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999996', N'Great Giant Tuna', N'1', N'2', N'0', N'7', N'5', N'40', N'7500', N'1', N'3', N'1', N'2500', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999997', N'Poor Ammonite', N'1', N'2', N'0', N'9', N'5', N'20', N'7500', N'1', N'3', N'1', N'2300', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999998', N'Ammonite', N'1', N'2', N'0', N'9', N'5', N'30', N'7500', N'1', N'3', N'1', N'2300', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'98999999', N'Great Ammonite', N'1', N'2', N'0', N'9', N'5', N'40', N'7500', N'1', N'3', N'1', N'2300', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000000', N'Poor Squid', N'1', N'2', N'0', N'11', N'5', N'20', N'7500', N'1', N'3', N'1', N'2000', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000001', N'Squid', N'1', N'2', N'0', N'11', N'5', N'30', N'7500', N'1', N'3', N'1', N'2000', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000002', N'Great Squid', N'1', N'2', N'0', N'11', N'5', N'40', N'7500', N'1', N'3', N'1', N'2000', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000003', N'Poor Starfish', N'1', N'2', N'0', N'6', N'5', N'20', N'7500', N'1', N'3', N'1', N'2200', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000004', N'Starfish', N'1', N'2', N'0', N'6', N'5', N'30', N'7500', N'1', N'3', N'1', N'2200', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000005', N'Great Starfish', N'1', N'2', N'0', N'6', N'5', N'40', N'7500', N'1', N'3', N'1', N'2200', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000006', N'Poor Swordfish', N'1', N'2', N'0', N'8', N'5', N'20', N'7500', N'1', N'3', N'1', N'2600', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000007', N'Swordfish', N'1', N'2', N'0', N'8', N'5', N'30', N'7500', N'1', N'3', N'1', N'2600', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000008', N'Great Swordfish', N'1', N'2', N'0', N'8', N'5', N'40', N'7500', N'1', N'3', N'1', N'2600', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000009', N'Poor Lobster Claw', N'1', N'2', N'0', N'10', N'5', N'20', N'7500', N'1', N'3', N'1', N'2300', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000010', N'Lobster Claw', N'1', N'2', N'0', N'10', N'5', N'30', N'7500', N'1', N'3', N'1', N'2300', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000011', N'Great Lobster Claw', N'1', N'2', N'0', N'10', N'5', N'40', N'7500', N'1', N'3', N'1', N'2300', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000012', N'Poor Hammerhead', N'1', N'2', N'0', N'12', N'5', N'20', N'7500', N'1', N'3', N'1', N'2200', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000013', N'Hammerhead', N'1', N'2', N'0', N'12', N'5', N'30', N'7500', N'1', N'3', N'1', N'2200', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000014', N'Great Hammerhead', N'1', N'2', N'0', N'12', N'5', N'40', N'7500', N'1', N'3', N'1', N'2200', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000015', N'Poor Twin Shrimp', N'1', N'2', N'0', N'55', N'5', N'20', N'7500', N'1', N'3', N'1', N'2200', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000016', N'Twin Shrimp', N'1', N'2', N'0', N'55', N'5', N'30', N'7500', N'1', N'3', N'1', N'2200', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000017', N'Great Twin Shrimp', N'1', N'2', N'0', N'55', N'5', N'40', N'7500', N'1', N'3', N'1', N'2200', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000018', N'Poor Salty Sea Horse', N'1', N'2', N'0', N'56', N'5', N'20', N'7500', N'1', N'3', N'1', N'2600', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000019', N'Salty Sea Horse', N'1', N'2', N'0', N'56', N'5', N'30', N'7500', N'1', N'3', N'1', N'2600', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000020', N'Great Salty Sea Horse', N'1', N'2', N'0', N'56', N'5', N'40', N'7500', N'1', N'3', N'1', N'2600', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000021', N'Poor Lobster Hands', N'1', N'2', N'0', N'57', N'5', N'20', N'7500', N'1', N'3', N'1', N'2300', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000022', N'Lobster Hands', N'1', N'2', N'0', N'57', N'5', N'30', N'7500', N'1', N'3', N'1', N'2300', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000023', N'Great Lobster Hands', N'1', N'2', N'0', N'57', N'5', N'40', N'7500', N'1', N'3', N'1', N'2300', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000024', N'Poor Loggerhead', N'1', N'2', N'0', N'58', N'5', N'20', N'7500', N'1', N'3', N'1', N'2200', N'5970', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000025', N'Loggerhead', N'1', N'2', N'0', N'58', N'5', N'30', N'7500', N'1', N'3', N'1', N'2200', N'10420', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99000026', N'Great Loggerhead', N'1', N'2', N'0', N'58', N'5', N'40', N'7500', N'1', N'3', N'1', N'2200', N'16730', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001501', N'Candy Cane', N'1', N'2', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001502', N'Merry Candy Cane', N'1', N'2', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001503', N'Silent Candy Cane', N'1', N'2', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001504', N'Holy Candy Cane', N'1', N'2', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001505', N'Santa''s Candy Cane', N'1', N'2', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001511', N'Poinsettia Cross', N'1', N'2', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001512', N'Merry Poinsettia Cross', N'1', N'2', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001513', N'Silent Poinsettia Cross', N'1', N'2', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001514', N'Holy Poinsettia Cross', N'1', N'2', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99001515', N'Santa''s Poinsettia Cross', N'1', N'2', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002501', N'Bell Hammer', N'1', N'2', N'3', N'6', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002502', N'Merry Bell Hammer', N'1', N'2', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002503', N'Silent Bell Hammer', N'1', N'2', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002504', N'Holy Bell Hammer', N'1', N'2', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002505', N'Santa''s Bell Hammer', N'1', N'2', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002511', N'Candelabra Axe', N'1', N'2', N'3', N'6', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002512', N'Merry Candelabra Axe', N'1', N'2', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002513', N'Silent Candelabra Axe', N'1', N'2', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002514', N'Holy Candelabra Axe', N'1', N'2', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99002515', N'Santa''s Candelabra Axe', N'1', N'2', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003501', N'Poinsettia Wing', N'1', N'2', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003502', N'Merry Poinsettia Wing', N'1', N'2', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003503', N'Silent Poinsettia Wing', N'1', N'2', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003504', N'Holy Poinsettia Wing', N'1', N'2', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003505', N'Santa''s Poinsettia Wing', N'1', N'2', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003511', N'Wreath Wrecker', N'1', N'2', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003512', N'Merry Wreath Wrecker', N'1', N'2', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003513', N'Silent Wreath Wrecker', N'1', N'2', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003514', N'Holy Wreath Wrecker', N'1', N'2', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99003515', N'Santa''s Wreath Wrecker', N'1', N'2', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004501', N'Sleigh Scythe', N'1', N'2', N'3', N'8', N'5', N'10', N'9000', N'1', N'3', N'1', N'2600', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004502', N'Merry Sleigh Scythe', N'1', N'2', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004503', N'Silent Sleigh Scythe', N'1', N'2', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004504', N'Holy Sleigh Scythe', N'1', N'2', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004505', N'Santa''s Sleigh Scythe', N'1', N'2', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004511', N'Birch Branch', N'1', N'2', N'3', N'8', N'5', N'10', N'9000', N'1', N'3', N'1', N'2600', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004512', N'Merry Birch Branch', N'1', N'2', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004513', N'Silent Birch Branch', N'1', N'2', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004514', N'Holy Birch Branch', N'1', N'2', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99004515', N'Santa''s Birch Branch', N'1', N'2', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005501', N'Stocking Socker', N'1', N'2', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005502', N'Merry Stocking Socker', N'1', N'2', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005503', N'Silent Stocking Socker', N'1', N'2', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005504', N'Holy Stocking Socker', N'1', N'2', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005505', N'Santa''s Stocking Socker', N'1', N'2', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005511', N'Giftwrap Gauntlet', N'1', N'2', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005512', N'Merry Giftwrap Gauntlet', N'1', N'2', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005513', N'Silent Giftwrap Gauntlet', N'1', N'2', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005514', N'Holy Giftwrap Gauntlet', N'1', N'2', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99005515', N'Santa''s Gift-Wrap Gauntlet', N'1', N'2', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006501', N'Snowman Claw', N'1', N'2', N'3', N'10', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006502', N'Merry Snowman Claw', N'1', N'2', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006503', N'Silent Snowman Claw', N'1', N'2', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006504', N'Holy Snowman Claw', N'1', N'2', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006505', N'Santa''s Snowman Claw', N'1', N'2', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006511', N'Santa Claw', N'1', N'2', N'3', N'10', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006512', N'Merry Santa Claw', N'1', N'2', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006513', N'Silent Santa Claw', N'1', N'2', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006514', N'Holy Santa Claw', N'1', N'2', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99006515', N'Santa''s Claw', N'1', N'2', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007501', N'Tree Topper', N'1', N'2', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007502', N'Merry Tree Topper', N'1', N'2', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007503', N'Silent Tree Topper', N'1', N'2', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007504', N'Holy Tree Topper', N'1', N'2', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007505', N'Santa''s Tree Topper', N'1', N'2', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007511', N'Jingle Blaster', N'1', N'2', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007512', N'Merry Jingle Blaster', N'1', N'2', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007513', N'Silent Jingle Blaster', N'1', N'2', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007514', N'Holy Jingle Blaster', N'1', N'2', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99007515', N'Santa''s Jingle Blaster', N'1', N'2', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008501', N'Cookie Cutter', N'1', N'2', N'3', N'12', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008502', N'Merry Cookie Cutter', N'1', N'2', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008503', N'Silent Cookie Cutter', N'1', N'2', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008504', N'Holy Cookie Cutter', N'1', N'2', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008505', N'Santa''s Cookie Cutter', N'1', N'2', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008511', N'Trumpet Musket', N'1', N'2', N'3', N'12', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008512', N'Merry Trumpet Musket', N'1', N'2', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008513', N'Silent Trumpet Musket', N'1', N'2', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008514', N'Holy Trumpet Musket', N'1', N'2', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99008515', N'Santa''s Trumpet Musket', N'1', N'2', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009501', N'Twin Forks', N'1', N'2', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009502', N'Merry Twin Forks', N'1', N'2', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009503', N'Silent Twin Forks', N'1', N'2', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009504', N'Holy Twin Forks', N'1', N'2', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009505', N'Santa''s Twin Forks', N'1', N'2', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009511', N'Twin Candles', N'1', N'2', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009512', N'Merry Twin Candles', N'1', N'2', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009513', N'Silent Twin Candles', N'1', N'2', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009514', N'Holy Twin Candles', N'1', N'2', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99009515', N'Santa''s Twin Candles', N'1', N'2', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011501', N'Snow Shovel', N'1', N'2', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011502', N'Merry Snow Shovel', N'1', N'2', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011503', N'Silent Snow Shovel', N'1', N'2', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011504', N'Holy Snow Shovel', N'1', N'2', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011505', N'Santa''s Snow Shovel', N'1', N'2', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011511', N'Mistletoe', N'1', N'2', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011512', N'Merry Mistletoe', N'1', N'2', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011513', N'Silent Mistletoe', N'1', N'2', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011514', N'Holy Mistletoe', N'1', N'2', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99011515', N'Santa''s Mistletoe', N'1', N'2', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013501', N'Reindeer Mitts', N'1', N'2', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013502', N'Merry Reindeer Mitts', N'1', N'2', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013503', N'Silent Reindeer Mitts', N'1', N'2', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013504', N'Holy Reindeer Mitts', N'1', N'2', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013505', N'Santa''s Reindeer Mitts', N'1', N'2', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013511', N'Chimney Fists', N'1', N'2', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013512', N'Merry Chimney Fists', N'1', N'2', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013513', N' Silent Chimney Fists', N'1', N'2', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013514', N'Holy Chimney Fists', N'1', N'2', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99013515', N'Santa''s Chimney Fists', N'1', N'2', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015501', N'Gift Box', N'1', N'2', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015502', N'Merry Gift Box', N'1', N'2', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015503', N'Silent Gift Box', N'1', N'2', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015504', N'Holy Gift Box', N'1', N'2', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015505', N'Santa''s Gift Box', N'1', N'2', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015511', N'Cookie Box', N'1', N'2', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'278')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015512', N'Merry Cookie Box', N'1', N'2', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015513', N'Silent Cookie Box', N'1', N'2', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015514', N'Holy Cookie Box', N'1', N'2', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99015515', N'Santa''s Cookie Box', N'1', N'2', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999991', N'Frantz Default Primary Weapon', N'1', N'0', N'0', N'5', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999992', N'Angela Default Primary Weapon', N'1', N'0', N'0', N'7', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999993', N'Tude Default Primary Weapon', N'1', N'0', N'0', N'9', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999994', N'Natasha Default Primary Weapon', N'1', N'0', N'0', N'11', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999995', N'Frantz Default Secondary Weapon', N'1', N'0', N'0', N'6', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999996', N'Angela Default Secondary Weapon', N'1', N'0', N'0', N'8', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999997', N'Tude Default Secondary Weapon', N'1', N'0', N'0', N'10', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'99999998', N'Natasha Default Secondary Weapon', N'1', N'0', N'0', N'12', N'1', N'1', N'7500', N'0', N'0', N'1', N'0', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111012001', N'Technical Officer''s Small Sword', N'1', N'2', N'0', N'5', N'2', N'4', N'7500', N'0', N'3', N'1', N'2000', N'480', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111012002', N'Recon Long Sword', N'1', N'2', N'0', N'5', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111014001', N'Ruben''s Bone Blade', N'1', N'2', N'0', N'5', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111014002', N'War Sword', N'1', N'2', N'0', N'5', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111014003', N'Joheim''s Lavinunce Edge', N'1', N'2', N'0', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015001', N'Sword of Agony', N'1', N'2', N'0', N'5', N'4', N'19', N'8000', N'1', N'3', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015002', N'Sword of Despair', N'1', N'2', N'0', N'5', N'4', N'29', N'8000', N'1', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015003', N'Sword of Sorrow', N'1', N'2', N'0', N'5', N'4', N'39', N'8000', N'1', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015004', N'Joheim''s Snare', N'1', N'2', N'0', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015101', N'Skeletal Sword', N'1', N'2', N'3', N'5', N'5', N'42', N'8000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015201', N'Catacomb Sword', N'1', N'2', N'3', N'5', N'5', N'47', N'8000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111015301', N'Catacomb Sword', N'1', N'2', N'3', N'5', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111016101', N'Bonehewn Sword', N'1', N'2', N'2', N'5', N'6', N'43', N'8000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111016201', N'Hidden Catacomb Sword', N'1', N'2', N'2', N'5', N'6', N'48', N'8000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111016301', N'Hidden Catacomb Sword', N'1', N'2', N'2', N'5', N'6', N'53', N'10000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111022002', N'Recon Grid Axe', N'1', N'2', N'0', N'6', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111024001', N'Ruben''s Small Axe', N'1', N'2', N'0', N'6', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111024002', N'Tabar Jin Mace', N'1', N'2', N'0', N'6', N'4', N'12', N'8000', N'1', N'3', N'1', N'2200', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111024003', N'Fury of Joheim', N'1', N'2', N'0', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025001', N'Axe of Agony', N'1', N'2', N'0', N'6', N'4', N'19', N'8000', N'1', N'3', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025002', N'Mace of Despair', N'1', N'2', N'0', N'6', N'4', N'29', N'8000', N'1', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025003', N'Axe of Sorrow', N'1', N'2', N'0', N'6', N'4', N'39', N'8000', N'1', N'3', N'1', N'2200', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025004', N'Joheim''s Procyon', N'1', N'2', N'0', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025101', N'Skeletal Axe', N'1', N'2', N'3', N'6', N'5', N'42', N'8000', N'1', N'3', N'1', N'2300', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025201', N'Catacomb Axe', N'1', N'2', N'3', N'6', N'5', N'47', N'8000', N'1', N'3', N'1', N'2300', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111025301', N'Catacomb Axe', N'1', N'2', N'3', N'6', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111026101', N'Bonehewn Axe', N'1', N'2', N'2', N'6', N'6', N'43', N'8000', N'1', N'3', N'1', N'2300', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111026201', N'Hidden Catacomb Axe', N'1', N'2', N'2', N'6', N'6', N'48', N'8000', N'1', N'3', N'1', N'2300', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111026301', N'Hidden Catacomb Axe', N'1', N'2', N'2', N'6', N'6', N'53', N'10000', N'1', N'3', N'1', N'2300', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111032001', N'Technical Officer''s Magic Sword', N'1', N'2', N'0', N'7', N'2', N'4', N'7500', N'0', N'3', N'1', N'2500', N'480', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111032002', N'Recon Lunar Magic Sword', N'1', N'2', N'0', N'7', N'2', N'6', N'7500', N'0', N'3', N'1', N'2500', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111034001', N'Ruben''s Bone Sword', N'1', N'2', N'0', N'7', N'4', N'8', N'8000', N'1', N'3', N'1', N'2500', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111034002', N'Crystal Magic Sword', N'1', N'2', N'0', N'7', N'4', N'12', N'8000', N'1', N'3', N'1', N'2500', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111034003', N'Estel''s Misericorde ', N'1', N'2', N'0', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035001', N'Magic Sword of Mischief', N'1', N'2', N'0', N'7', N'4', N'19', N'8000', N'1', N'3', N'1', N'2500', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035002', N'Magic Sword of Chicanery', N'1', N'2', N'0', N'7', N'4', N'29', N'8000', N'1', N'3', N'1', N'2500', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035003', N'Magic Sword of Devilry', N'1', N'2', N'0', N'7', N'4', N'39', N'8000', N'1', N'3', N'1', N'2500', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035004', N'Estel''s Pendulum', N'1', N'2', N'0', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035101', N'Skeletal Magic Sword', N'1', N'2', N'3', N'7', N'5', N'42', N'8000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035201', N'Catacomb Magic Sword', N'1', N'2', N'3', N'7', N'5', N'47', N'8000', N'1', N'3', N'1', N'2200', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111035301', N'Catacomb Magic Sword', N'1', N'2', N'3', N'7', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111036101', N'Bonehewn Magic Sword', N'1', N'2', N'2', N'7', N'6', N'43', N'8000', N'1', N'3', N'1', N'2200', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111036201', N'Hidden Catacomb Magic Sword', N'1', N'2', N'2', N'7', N'6', N'48', N'8000', N'1', N'3', N'1', N'2200', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111036301', N'Hidden Catacomb Magic Sword', N'1', N'2', N'2', N'7', N'6', N'53', N'10000', N'1', N'3', N'1', N'2200', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111042002', N'Recon Handy Scythe', N'1', N'2', N'0', N'8', N'2', N'6', N'7500', N'0', N'3', N'1', N'2500', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111044001', N'Ruben''s Moon Magic Scythe', N'1', N'2', N'0', N'8', N'4', N'8', N'8000', N'1', N'3', N'1', N'2500', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111044002', N'Phantom Scythe', N'1', N'2', N'0', N'8', N'4', N'12', N'8000', N'1', N'3', N'1', N'2600', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111044003', N'Estel''s Dark Scythe', N'1', N'2', N'0', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045001', N'Scythe of Mischief', N'1', N'2', N'0', N'8', N'4', N'19', N'8000', N'1', N'3', N'1', N'2600', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045002', N'Scythe of Chicanery', N'1', N'2', N'0', N'8', N'4', N'29', N'8000', N'1', N'3', N'1', N'2600', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045003', N'Scythe of Devilry', N'1', N'2', N'0', N'8', N'4', N'39', N'8000', N'1', N'3', N'1', N'2600', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045004', N'Estel''s Al-Henna', N'1', N'2', N'0', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045101', N'Skeletal Scythe', N'1', N'2', N'3', N'8', N'5', N'42', N'8000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045201', N'Catacomb Scythe', N'1', N'2', N'3', N'8', N'5', N'47', N'8000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111045301', N'Catacomb Scythe', N'1', N'2', N'3', N'8', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111046101', N'Bonehewn Scythe', N'1', N'2', N'2', N'8', N'6', N'43', N'8000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111046201', N'Hidden Catacomb Scythe', N'1', N'2', N'2', N'8', N'6', N'48', N'8000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111046301', N'Hidden Catacomb Scythe', N'1', N'2', N'2', N'8', N'6', N'53', N'10000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111052001', N'Technical Officer''s Light Gauntlet', N'1', N'2', N'0', N'9', N'2', N'4', N'7500', N'0', N'3', N'1', N'2300', N'480', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111052002', N'Recon Low Gauntlet', N'1', N'2', N'0', N'9', N'2', N'6', N'7500', N'0', N'3', N'1', N'2300', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111054001', N'Ruben''s Bone Gauntlets', N'1', N'2', N'0', N'9', N'4', N'8', N'8000', N'1', N'3', N'1', N'2300', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111054002', N'Metal Gauntlets', N'1', N'2', N'0', N'9', N'4', N'12', N'8000', N'1', N'3', N'1', N'2300', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111054003', N'Gorgon''s Jade Gauntlet', N'1', N'2', N'0', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055001', N'Foolish Gauntlet', N'1', N'2', N'0', N'9', N'4', N'19', N'8000', N'1', N'3', N'1', N'2300', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055002', N'Playful Gauntlet', N'1', N'2', N'0', N'9', N'4', N'29', N'8000', N'1', N'3', N'1', N'2300', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055003', N'Scoundrel Gauntlet', N'1', N'2', N'0', N'9', N'4', N'39', N'8000', N'1', N'3', N'1', N'2300', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055004', N'Gorgon''s Dube', N'1', N'2', N'0', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055101', N'Skeletal Gauntlet', N'1', N'2', N'3', N'9', N'5', N'42', N'8000', N'1', N'3', N'1', N'2500', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055201', N'Catacomb Gauntlet', N'1', N'2', N'3', N'9', N'5', N'47', N'8000', N'1', N'3', N'1', N'2500', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111055301', N'Catacomb Gauntlet', N'1', N'2', N'3', N'9', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111056101', N'Bonehewn Gauntlet', N'1', N'2', N'2', N'9', N'6', N'43', N'8000', N'1', N'3', N'1', N'2500', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111056201', N'Hidden Catacomb Gauntlet', N'1', N'2', N'2', N'9', N'6', N'48', N'8000', N'1', N'3', N'1', N'2500', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111056301', N'Hidden Catacomb Gauntlet', N'1', N'2', N'2', N'9', N'6', N'53', N'10000', N'1', N'3', N'1', N'2500', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111062002', N'Recon Light Claw', N'1', N'2', N'0', N'10', N'2', N'6', N'7500', N'0', N'3', N'1', N'2300', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111064001', N'Ruben''s Howling Claw', N'1', N'2', N'0', N'10', N'4', N'8', N'8000', N'1', N'3', N'1', N'2300', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111064002', N'Jin Ghost Claw', N'1', N'2', N'0', N'10', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111064003', N'Gorgon''s Cestus', N'1', N'2', N'0', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065001', N'Foolish Claw', N'1', N'2', N'0', N'10', N'4', N'19', N'8000', N'1', N'3', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065002', N'Playful Claw', N'1', N'2', N'0', N'10', N'4', N'29', N'8000', N'1', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065003', N'Scoundrel Claw', N'1', N'2', N'0', N'10', N'4', N'39', N'8000', N'1', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065004', N'Gorgon''s Cat Foot', N'1', N'2', N'0', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065101', N'Skeletal Claw', N'1', N'2', N'3', N'10', N'5', N'42', N'8000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065201', N'Catacomb Claw', N'1', N'2', N'3', N'10', N'5', N'47', N'8000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111065301', N'Catacomb Claw', N'1', N'2', N'3', N'10', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111066101', N'Bonehewn Claw', N'1', N'2', N'2', N'10', N'6', N'43', N'8000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111066201', N'Hidden Catacomb Claw', N'1', N'2', N'2', N'10', N'6', N'48', N'8000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111066301', N'Hidden Catacomb Claw', N'1', N'2', N'2', N'10', N'6', N'53', N'10000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111072001', N'Technical Officer''s Auto Pistol', N'1', N'2', N'0', N'11', N'2', N'4', N'7500', N'0', N'3', N'1', N'2000', N'480', N'79')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111072002', N'Recon Flight Pistol', N'1', N'2', N'0', N'11', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111074001', N'Ruben''s Peashooter', N'1', N'2', N'0', N'11', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111074002', N'Brief Pistol', N'1', N'2', N'0', N'11', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111074003', N'Unoa''s Shud Revolver', N'1', N'2', N'0', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075001', N'Deceiver''s Revolver', N'1', N'2', N'0', N'11', N'4', N'19', N'8000', N'1', N'3', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075002', N'Charlatan''s Revolver', N'1', N'2', N'0', N'11', N'4', N'29', N'8000', N'1', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075003', N'Swindler''s Revolver', N'1', N'2', N'0', N'11', N'4', N'39', N'8000', N'1', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075004', N'Unoa''s Sharp Shooter', N'1', N'2', N'0', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075101', N'Skeletal Revolver', N'1', N'2', N'3', N'11', N'5', N'42', N'8000', N'1', N'3', N'1', N'2600', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075201', N'Catacomb Revolver', N'1', N'2', N'3', N'11', N'5', N'47', N'8000', N'1', N'3', N'1', N'2600', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111075301', N'Catacomb Revolver', N'1', N'2', N'3', N'11', N'5', N'52', N'9000', N'1', N'3', N'1', N'2600', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111076101', N'Bonehewn Revolver', N'1', N'2', N'2', N'11', N'6', N'43', N'8000', N'1', N'3', N'1', N'2600', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111076201', N'Hidden Catacomb Revolver', N'1', N'2', N'2', N'11', N'6', N'48', N'8000', N'1', N'3', N'1', N'2600', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111076301', N'Hidden Catacomb Revolver', N'1', N'2', N'2', N'11', N'6', N'53', N'10000', N'1', N'3', N'1', N'2600', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111082002', N'Recon Handy Musket', N'1', N'2', N'0', N'12', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111084001', N'Ruben''s Bolt Gun', N'1', N'2', N'0', N'12', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111084002', N'Lever Action', N'1', N'2', N'0', N'12', N'4', N'12', N'8000', N'1', N'3', N'1', N'2200', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111084003', N'Unoa''s .44 Magnum', N'1', N'2', N'0', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085001', N'Deceiver''s Musket', N'1', N'2', N'0', N'12', N'4', N'19', N'8000', N'1', N'3', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085002', N'Charlatan''s Musket', N'1', N'2', N'0', N'12', N'4', N'29', N'8000', N'1', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085003', N'Swindler''s Musket', N'1', N'2', N'0', N'12', N'4', N'39', N'8000', N'1', N'3', N'1', N'2200', N'23590', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085004', N'Unoa''s Sonic Boom', N'1', N'2', N'0', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085101', N'Skeletal Musket', N'1', N'2', N'3', N'12', N'5', N'42', N'8000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085201', N'Catacomb Musket', N'1', N'2', N'3', N'12', N'5', N'47', N'8000', N'1', N'3', N'1', N'2200', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111085301', N'Catacomb Musket', N'1', N'2', N'3', N'12', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111086101', N'Bonehewn Musket', N'1', N'2', N'2', N'12', N'6', N'43', N'8000', N'1', N'3', N'1', N'2200', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111086201', N'Hidden Catacomb Musket', N'1', N'2', N'2', N'12', N'6', N'48', N'8000', N'1', N'3', N'1', N'2200', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111086301', N'Hidden Catacomb Musket', N'1', N'2', N'2', N'12', N'6', N'53', N'10000', N'1', N'3', N'1', N'2200', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111092001', N'Technical Officers Disrupt Twin Swords', N'1', N'2', N'0', N'55', N'2', N'4', N'7500', N'0', N'3', N'1', N'2000', N'480', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111092002', N'Ricon Fragmentary Twin Swords', N'1', N'2', N'0', N'55', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111094001', N'Ruben''s Ailantus', N'1', N'2', N'0', N'55', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111094002', N'Asymmetric Twin Swords', N'1', N'2', N'0', N'55', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111094003', N'Joheims Actinidia', N'1', N'2', N'0', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095001', N'Goldoha Expeditions Solemn Twin Swords', N'1', N'2', N'0', N'55', N'4', N'19', N'8000', N'1', N'3', N'1', N'2000', N'4500', N'743')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095002', N'Goldoha Expeditions Noble Twin Swords', N'1', N'2', N'0', N'55', N'4', N'29', N'8000', N'1', N'3', N'1', N'2000', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095003', N'Goldoha Expeditions Honorable Twin Swords', N'1', N'2', N'0', N'55', N'4', N'39', N'8000', N'1', N'3', N'1', N'2000', N'14580', N'2406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095004', N'Joheim''s Illex', N'1', N'2', N'0', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095101', N'Skeletal Twin Swords', N'1', N'2', N'3', N'55', N'5', N'42', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095201', N'Catacomb Twin Swords', N'1', N'2', N'3', N'55', N'5', N'47', N'9000', N'1', N'3', N'1', N'2000', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111095301', N'Catacomb Twin Swords', N'1', N'2', N'3', N'55', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111096101', N'Bonehewn Twin Swords', N'1', N'2', N'2', N'55', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111096201', N'Hidden Catacomb Twin Swords', N'1', N'2', N'2', N'55', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111096301', N'Hidden Catacomb Twin Swords', N'1', N'2', N'2', N'55', N'6', N'53', N'10000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111112001', N'Technical Officers Divine Glaive', N'1', N'2', N'0', N'56', N'2', N'4', N'7500', N'0', N'3', N'1', N'2500', N'480', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111112002', N'Ricon Glitters Glaive', N'1', N'2', N'0', N'56', N'2', N'6', N'7500', N'0', N'3', N'1', N'2500', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111114001', N'Ruben''s Aeumops', N'1', N'2', N'0', N'56', N'4', N'8', N'8000', N'1', N'3', N'1', N'2500', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111114002', N'Twilight Glaive', N'1', N'2', N'0', N'56', N'4', N'12', N'8000', N'1', N'3', N'1', N'2500', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111114003', N'Estels Leucogaster', N'1', N'2', N'0', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115001', N'Goldoha Expeditions Solemn Glaive', N'1', N'2', N'0', N'56', N'4', N'19', N'8000', N'1', N'3', N'1', N'2500', N'4500', N'743')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115002', N'Goldoha Expeditions Noble Glaive', N'1', N'2', N'0', N'56', N'4', N'29', N'8000', N'1', N'3', N'1', N'2500', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115003', N'Goldoha Expeditions Honorable Glaive', N'1', N'2', N'0', N'56', N'4', N'39', N'8000', N'1', N'3', N'1', N'2500', N'14580', N'2406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115004', N'Estels Juvatus', N'1', N'2', N'0', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115101', N'Skeletal Glaive', N'1', N'2', N'3', N'56', N'5', N'42', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115201', N'Catacomb Glaive', N'1', N'2', N'3', N'56', N'5', N'47', N'9000', N'1', N'3', N'1', N'2200', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111115301', N'Catacomb Glaive', N'1', N'2', N'3', N'56', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111116101', N'Bonehewn Glaive', N'1', N'2', N'2', N'56', N'6', N'43', N'10000', N'1', N'3', N'1', N'2200', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111116201', N'Hidden Catacomb Glaive', N'1', N'2', N'2', N'56', N'6', N'48', N'10000', N'1', N'3', N'1', N'2200', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111116301', N'Hidden Catacomb Glaive', N'1', N'2', N'2', N'56', N'6', N'53', N'10000', N'1', N'3', N'1', N'2200', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111132001', N'Technical Officer''s Scars Demon Hands', N'1', N'2', N'0', N'57', N'2', N'4', N'7500', N'0', N'3', N'1', N'2300', N'480', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111132002', N'Ricon Primitive Demon Hands', N'1', N'2', N'0', N'57', N'2', N'6', N'7500', N'0', N'3', N'1', N'2300', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111134001', N'Ruben''s Lepture', N'1', N'2', N'0', N'57', N'4', N'8', N'8000', N'1', N'3', N'1', N'2300', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111134002', N'Binding Demon Hands', N'1', N'2', N'0', N'57', N'4', N'12', N'8000', N'1', N'3', N'1', N'2300', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111134003', N'Gorgons Hesperius', N'1', N'2', N'0', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135001', N'Goldoha Expeditions Solemn Demon Hands', N'1', N'2', N'0', N'57', N'4', N'19', N'8000', N'1', N'3', N'1', N'2300', N'4500', N'743')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135002', N'Goldoha Expeditions Noble Demon Hands', N'1', N'2', N'0', N'57', N'4', N'29', N'8000', N'1', N'3', N'1', N'2300', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135003', N'Goldoha Expeditions Honorable Demon Hands', N'1', N'2', N'0', N'57', N'4', N'39', N'8000', N'1', N'3', N'1', N'2300', N'14580', N'2406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135004', N'Gorgons Pumosus', N'1', N'2', N'0', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135101', N'Skeletal Demon Hands', N'1', N'2', N'3', N'57', N'5', N'42', N'9000', N'1', N'3', N'1', N'2500', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135201', N'Catacomb Demon Hands', N'1', N'2', N'3', N'57', N'5', N'47', N'9000', N'1', N'3', N'1', N'2500', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111135301', N'Catacomb Demon Hands', N'1', N'2', N'3', N'57', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111136101', N'Bonehewn Demon Hands', N'1', N'2', N'2', N'57', N'6', N'43', N'10000', N'1', N'3', N'1', N'2500', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111136201', N'Hidden Catacomb Demon Hands', N'1', N'2', N'2', N'57', N'6', N'48', N'10000', N'1', N'3', N'1', N'2500', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111136301', N'Hidden Catacomb Demon Hands', N'1', N'2', N'2', N'57', N'6', N'53', N'10000', N'1', N'3', N'1', N'2500', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111152001', N'Technical Officers Unsigned Weapon Bag', N'1', N'2', N'0', N'58', N'2', N'4', N'7500', N'0', N'3', N'1', N'2000', N'480', N'80')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111152002', N'Ricon Untrained Weapon Bag', N'1', N'2', N'0', N'58', N'2', N'6', N'7500', N'0', N'3', N'1', N'2000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111154001', N'Ruben''s Polifemus', N'1', N'2', N'0', N'58', N'4', N'8', N'8000', N'1', N'3', N'1', N'2000', N'1290', N'213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111154002', N'Qualified Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'12', N'8000', N'1', N'3', N'1', N'2000', N'2270', N'375')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111154003', N'Unoa''s Testudinidae', N'1', N'2', N'0', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155001', N'Goldoha Expeditions Solemn Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'19', N'8000', N'1', N'3', N'1', N'2000', N'4500', N'743')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155002', N'Goldoha Expeditions Noble Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'29', N'8000', N'1', N'3', N'1', N'2000', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155003', N'Goldoha Expeditions Honorable Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'39', N'8000', N'1', N'3', N'1', N'2000', N'14580', N'2406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155004', N'Unoa''s Clemis', N'1', N'2', N'0', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'849')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155101', N'Skeletal Weapon Bag', N'1', N'2', N'3', N'58', N'5', N'42', N'9000', N'1', N'3', N'1', N'2600', N'17440', N'2878')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155201', N'Catacomb Weapon Bag', N'1', N'2', N'3', N'58', N'5', N'47', N'9000', N'1', N'3', N'1', N'2600', N'21210', N'3500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111155301', N'Catacomb Weapon Bag', N'1', N'2', N'3', N'58', N'5', N'52', N'9000', N'1', N'3', N'1', N'2600', N'25330', N'4179')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111156101', N'Bonehewn Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'43', N'10000', N'1', N'3', N'1', N'2600', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111156201', N'Hidden Catacomb Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'48', N'10000', N'1', N'3', N'1', N'2600', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'111156301', N'Hidden Catacomb Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'53', N'10000', N'1', N'3', N'1', N'2600', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112012001', N'Fabric Robe', N'1', N'2', N'0', N'1', N'2', N'4', N'5500', N'0', N'3', N'2', N'1400', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014001', N'Scarlet Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'9', N'6000', N'1', N'3', N'2', N'1400', N'760', N'125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014003', N'Model Student Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'18', N'6000', N'1', N'3', N'2', N'1400', N'2070', N'342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014004', N'Holy Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'21', N'6000', N'1', N'3', N'2', N'1400', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014006', N'Farvis Robe', N'1', N'2', N'0', N'1', N'4', N'27', N'6000', N'1', N'3', N'2', N'1400', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014007', N'Evil Robe', N'1', N'2', N'0', N'1', N'4', N'30', N'6000', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014008', N'Stylish Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'19', N'6000', N'1', N'3', N'2', N'1400', N'2250', N'371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014011', N'Lv. 33 Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'33', N'6000', N'1', N'3', N'2', N'1400', N'5490', N'906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112014012', N'Lv. 35 Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'35', N'6000', N'1', N'3', N'2', N'1400', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112015101', N'Bone Fleur Robe', N'1', N'2', N'3', N'1', N'5', N'42', N'6500', N'1', N'3', N'2', N'1400', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112015102', N'Catacomb Fabric Robe', N'1', N'2', N'3', N'1', N'5', N'47', N'6500', N'1', N'3', N'2', N'1400', N'10600', N'1749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112015103', N'Seven Stones Fabric Robe', N'1', N'2', N'3', N'1', N'5', N'52', N'6500', N'1', N'3', N'2', N'1400', N'12670', N'2091')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112016101', N'Bonehewn Lingee Robe', N'1', N'2', N'2', N'1', N'6', N'43', N'7000', N'1', N'3', N'2', N'1400', N'9530', N'1573')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112016102', N'Hidden Catacomb Fabric Robe', N'1', N'2', N'2', N'1', N'6', N'48', N'7000', N'1', N'3', N'2', N'1400', N'11550', N'1906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112016103', N'Hidden Seven Stones Fabric Robe', N'1', N'2', N'2', N'1', N'6', N'53', N'7000', N'1', N'3', N'2', N'1400', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112022001', N'Leather Mail', N'1', N'2', N'0', N'2', N'2', N'4', N'5500', N'0', N'3', N'2', N'1900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024001', N'Scarlet Leather Mail', N'1', N'2', N'0', N'2', N'4', N'9', N'6000', N'1', N'3', N'2', N'1900', N'760', N'125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024003', N'Model Student Leather Mail', N'1', N'2', N'0', N'2', N'4', N'18', N'6000', N'1', N'3', N'2', N'1900', N'2070', N'342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024004', N'Holy Leather Mail', N'1', N'2', N'0', N'2', N'4', N'21', N'6000', N'1', N'3', N'2', N'1900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024006', N'Farvis Leather Mail', N'1', N'2', N'0', N'2', N'4', N'27', N'6000', N'1', N'3', N'2', N'1900', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024007', N'Evil Leather Mail', N'1', N'2', N'0', N'2', N'4', N'30', N'6000', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024008', N'Stylish Leather Mail', N'1', N'2', N'0', N'2', N'4', N'19', N'6000', N'1', N'3', N'2', N'1900', N'2250', N'371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024011', N'Lv. 33 Leather Mail', N'1', N'2', N'0', N'2', N'4', N'33', N'6000', N'1', N'3', N'2', N'1900', N'5490', N'906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112024012', N'Lv. 35 Leather Mail', N'1', N'2', N'0', N'2', N'4', N'35', N'6000', N'1', N'3', N'2', N'1900', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112025101', N'Bone Beatrice Leather Armor', N'1', N'2', N'3', N'2', N'5', N'42', N'6500', N'1', N'3', N'2', N'1900', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112025102', N'Catacomb Leather Armor', N'1', N'2', N'3', N'2', N'5', N'47', N'6500', N'1', N'3', N'2', N'1900', N'10600', N'1749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112025103', N'Seven Stones Leather Armor', N'1', N'2', N'3', N'2', N'5', N'52', N'6500', N'1', N'3', N'2', N'1900', N'12670', N'2091')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112026101', N'Bonehewn Elodie Leather Armor', N'1', N'2', N'2', N'2', N'6', N'43', N'7000', N'1', N'3', N'2', N'1900', N'9530', N'1573')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112026102', N'Hidden Catacomb Leather Armor', N'1', N'2', N'2', N'2', N'6', N'48', N'7000', N'1', N'3', N'2', N'1900', N'11550', N'1906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112026103', N'Hidden Seven Stones Leather Armor', N'1', N'2', N'2', N'2', N'6', N'53', N'7000', N'1', N'3', N'2', N'1900', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112032001', N'Chain Cuirass', N'1', N'2', N'0', N'3', N'2', N'4', N'5500', N'0', N'3', N'2', N'3000', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034001', N'Scarlet Chain Cuirass', N'1', N'2', N'0', N'3', N'4', N'9', N'6000', N'1', N'3', N'2', N'3000', N'760', N'125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034003', N'Model Student Chain Cuirass', N'1', N'2', N'0', N'3', N'4', N'18', N'6000', N'1', N'3', N'2', N'3000', N'2070', N'342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034004', N'Holy Chain Cuirass', N'1', N'2', N'0', N'3', N'4', N'21', N'6000', N'1', N'3', N'2', N'3000', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034006', N'Farvis Chain Armor', N'1', N'2', N'0', N'3', N'4', N'27', N'6000', N'1', N'3', N'2', N'3000', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034007', N'Evil Chain Armor', N'1', N'2', N'0', N'3', N'4', N'30', N'6000', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034008', N'Stylish Chain Cuirass', N'1', N'2', N'0', N'3', N'4', N'19', N'6000', N'1', N'3', N'2', N'3000', N'2250', N'371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034011', N'Lv. 33 Chain Mail', N'1', N'2', N'0', N'3', N'4', N'33', N'6000', N'1', N'3', N'2', N'3000', N'5490', N'906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112034012', N'Lv. 35 Chain Mail', N'1', N'2', N'0', N'3', N'4', N'35', N'6000', N'1', N'3', N'2', N'3000', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112035101', N'Bone Defenso Chain Mail', N'1', N'2', N'3', N'3', N'5', N'42', N'6500', N'1', N'3', N'2', N'3000', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112035102', N'Catacomb Chainmail', N'1', N'2', N'3', N'3', N'5', N'47', N'6500', N'1', N'3', N'2', N'3000', N'10600', N'1749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112035103', N'Seven Stones Chainmail', N'1', N'2', N'3', N'3', N'5', N'52', N'6500', N'1', N'3', N'2', N'3000', N'12670', N'2091')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112036101', N'Bonehewn Hinch Chain Mail', N'1', N'2', N'2', N'3', N'6', N'43', N'7000', N'1', N'3', N'2', N'3000', N'9530', N'1573')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112036102', N'Hidden Catacomb Chainmail', N'1', N'2', N'2', N'3', N'6', N'48', N'7000', N'1', N'3', N'2', N'3000', N'11550', N'1906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112036103', N'Hidden Seven Stones Chainmail', N'1', N'2', N'2', N'3', N'6', N'53', N'7000', N'1', N'3', N'2', N'3000', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112042001', N'Plate Armor', N'1', N'2', N'0', N'4', N'2', N'4', N'5500', N'0', N'3', N'2', N'5700', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044001', N'Scarlet Plate Armor', N'1', N'2', N'0', N'4', N'4', N'9', N'6000', N'1', N'3', N'2', N'5700', N'760', N'125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044003', N'Model Student Plate Armor', N'1', N'2', N'0', N'4', N'4', N'18', N'6000', N'1', N'3', N'2', N'5700', N'2070', N'342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044004', N'Holy Plate Armor', N'1', N'2', N'0', N'4', N'4', N'21', N'6000', N'1', N'3', N'2', N'5700', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044006', N'Farvis Plate', N'1', N'2', N'0', N'4', N'4', N'27', N'6000', N'1', N'3', N'2', N'5700', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044007', N'Evil Plate', N'1', N'2', N'0', N'4', N'4', N'30', N'6000', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044008', N'Stylish Plate Armor', N'1', N'2', N'0', N'4', N'4', N'19', N'6000', N'1', N'3', N'2', N'5700', N'2250', N'371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044011', N'Lv. 33 Plate Mail', N'1', N'2', N'0', N'4', N'4', N'33', N'6000', N'1', N'3', N'2', N'5700', N'5490', N'906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112044012', N'Lv. 35 Plate Mail', N'1', N'2', N'0', N'4', N'4', N'35', N'6000', N'1', N'3', N'2', N'5700', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112045101', N'Bone Fergana Plate', N'1', N'2', N'3', N'4', N'5', N'42', N'6500', N'1', N'3', N'2', N'5700', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112045102', N'Catacomb Plate', N'1', N'2', N'3', N'4', N'5', N'47', N'6500', N'1', N'3', N'2', N'5700', N'10600', N'1749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112045103', N'Seven Stones Plate', N'1', N'2', N'3', N'4', N'5', N'52', N'6500', N'1', N'3', N'2', N'5700', N'12670', N'2091')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112046101', N'Bonehewn Bandit Plate', N'1', N'2', N'2', N'4', N'6', N'43', N'7000', N'1', N'3', N'2', N'5700', N'9530', N'1573')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112046102', N'Hidden Catacomb Plate', N'1', N'2', N'2', N'4', N'6', N'48', N'7000', N'1', N'3', N'2', N'5700', N'11550', N'1906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'112046103', N'Hidden Seven Stones Plate', N'1', N'2', N'2', N'4', N'6', N'53', N'7000', N'1', N'3', N'2', N'5700', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113012001', N'Fabric Hood', N'1', N'2', N'0', N'1', N'2', N'9', N'3200', N'0', N'3', N'2', N'900', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014003', N'Model Student Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'18', N'3400', N'1', N'3', N'2', N'900', N'1380', N'227')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014004', N'Holy Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'21', N'3400', N'1', N'3', N'2', N'900', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014006', N'Farvis Hood', N'1', N'2', N'0', N'1', N'4', N'27', N'3400', N'1', N'3', N'2', N'900', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014009', N'Miscellaneous Merchant''s Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'14', N'3400', N'1', N'3', N'2', N'900', N'950', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014010', N'Lv. 31 Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'31', N'3400', N'1', N'3', N'2', N'900', N'3300', N'544')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014012', N'Lv. 35 Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113014013', N'Lv. 37 Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'37', N'3400', N'1', N'3', N'2', N'900', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113015101', N'Bone Fleur Hood', N'1', N'2', N'3', N'1', N'5', N'42', N'3600', N'1', N'3', N'2', N'900', N'5810', N'959')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113015102', N'Catacomb Fabric Hood', N'1', N'2', N'3', N'1', N'5', N'47', N'3600', N'1', N'3', N'2', N'900', N'7070', N'1167')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113015103', N'Seven Stones Fabric Hood', N'1', N'2', N'3', N'1', N'5', N'52', N'3600', N'1', N'3', N'2', N'900', N'8440', N'1393')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113016101', N'Bonehewn Lingee Hood', N'1', N'2', N'2', N'1', N'6', N'43', N'4000', N'1', N'3', N'2', N'900', N'6350', N'1048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113016102', N'Hidden Catacomb Fabric Hood', N'1', N'2', N'2', N'1', N'6', N'48', N'4000', N'1', N'3', N'2', N'900', N'7700', N'1271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113016103', N'Hidden Seven Stones Fabric Hood', N'1', N'2', N'2', N'1', N'6', N'53', N'4000', N'1', N'3', N'2', N'900', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113022001', N'Leather Cap', N'1', N'2', N'0', N'2', N'2', N'9', N'3200', N'0', N'3', N'2', N'1200', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024003', N'Model Student Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'18', N'3400', N'1', N'3', N'2', N'1200', N'1380', N'227')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024004', N'Holy Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'21', N'3400', N'1', N'3', N'2', N'1200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024006', N'Farvis Leather Cap', N'1', N'2', N'0', N'2', N'4', N'27', N'3400', N'1', N'3', N'2', N'1200', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024009', N'Miscellaneous Merchant''s Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'14', N'3400', N'1', N'3', N'2', N'1200', N'950', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024010', N'Lv. 31 Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'31', N'3400', N'1', N'3', N'2', N'1200', N'3300', N'544')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024012', N'Lv. 35 Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'1200', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113024013', N'Lv. 37 Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'37', N'3400', N'1', N'3', N'2', N'1200', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113025101', N'Bone Beatrice Leather Cap', N'1', N'2', N'3', N'2', N'5', N'42', N'3600', N'1', N'3', N'2', N'1200', N'5810', N'959')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113025102', N'Catacomb Leather Cap', N'1', N'2', N'3', N'2', N'5', N'47', N'3600', N'1', N'3', N'2', N'1200', N'7070', N'1167')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113025103', N'Seven Stones Leather Cap', N'1', N'2', N'3', N'2', N'5', N'52', N'3600', N'1', N'3', N'2', N'1200', N'8440', N'1393')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113026101', N'Bonehewn Elodie Leather Cap', N'1', N'2', N'2', N'2', N'6', N'43', N'4000', N'1', N'3', N'2', N'1200', N'6350', N'1048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113026102', N'Hidden Catacomb Leather Cap', N'1', N'2', N'2', N'2', N'6', N'48', N'4000', N'1', N'3', N'2', N'1200', N'7700', N'1271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113026103', N'Hidden Seven Stones Leather Cap', N'1', N'2', N'2', N'2', N'6', N'53', N'4000', N'1', N'3', N'2', N'1200', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113032001', N'Helm', N'1', N'2', N'0', N'3', N'2', N'9', N'3200', N'0', N'3', N'2', N'1800', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034003', N'Model Student Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'18', N'3400', N'1', N'3', N'2', N'1800', N'1380', N'227')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034004', N'Holy Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'21', N'3400', N'1', N'3', N'2', N'1800', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034006', N'Farvis Coif', N'1', N'2', N'0', N'3', N'4', N'27', N'3400', N'1', N'3', N'2', N'1800', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034009', N'Miscellaneous Merchant''s Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'14', N'3400', N'1', N'3', N'2', N'1800', N'950', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034010', N'Lv. 31 Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'31', N'3400', N'1', N'3', N'2', N'1800', N'3300', N'544')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034012', N'Lv. 35 Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'1800', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113034013', N'Lv. 37 Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'37', N'3400', N'1', N'3', N'2', N'1800', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113035101', N'Bone Defenso Chain Helm', N'1', N'2', N'3', N'3', N'5', N'42', N'3600', N'1', N'3', N'2', N'1800', N'5810', N'959')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113035102', N'Catacomb Chain Helm', N'1', N'2', N'3', N'3', N'5', N'47', N'3600', N'1', N'3', N'2', N'1800', N'7070', N'1167')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113035103', N'Seven Stones Chain Helm', N'1', N'2', N'3', N'3', N'5', N'52', N'3600', N'1', N'3', N'2', N'1800', N'8440', N'1393')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113036101', N'Bonehewn Hinch Helm', N'1', N'2', N'2', N'3', N'6', N'43', N'4000', N'1', N'3', N'2', N'1800', N'6350', N'1048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113036102', N'Hidden Catacomb Chain Helm', N'1', N'2', N'2', N'3', N'6', N'48', N'4000', N'1', N'3', N'2', N'1800', N'7700', N'1271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113036103', N'Hidden Seven Stones Chain Helm', N'1', N'2', N'2', N'3', N'6', N'53', N'4000', N'1', N'3', N'2', N'1800', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113042001', N'Plate Helmet', N'1', N'2', N'0', N'4', N'2', N'9', N'3200', N'0', N'3', N'2', N'3400', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044003', N'Model Student Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'18', N'3400', N'1', N'3', N'2', N'3400', N'1380', N'227')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044004', N'Holy Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'21', N'3400', N'1', N'3', N'2', N'3400', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044006', N'Farvis Helm', N'1', N'2', N'0', N'4', N'4', N'27', N'3400', N'1', N'3', N'2', N'3400', N'2620', N'432')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044009', N'Miscellaneous Merchant''s Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'14', N'3400', N'1', N'3', N'2', N'3400', N'950', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044010', N'Lv. 31 Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'31', N'3400', N'1', N'3', N'2', N'3400', N'3300', N'544')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044012', N'Lv. 35 Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'3400', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113044013', N'Lv. 37 Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'37', N'3400', N'1', N'3', N'2', N'3400', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113045101', N'Bone Fergana War Helm', N'1', N'2', N'3', N'4', N'5', N'42', N'3600', N'1', N'3', N'2', N'3400', N'5810', N'959')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113045102', N'Catacomb Plate Helm', N'1', N'2', N'3', N'4', N'5', N'47', N'3600', N'1', N'3', N'2', N'3400', N'7070', N'1167')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113045103', N'Seven Stones Plate Helm', N'1', N'2', N'3', N'4', N'5', N'52', N'3600', N'1', N'3', N'2', N'3400', N'8440', N'1393')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113046101', N'Bonehewn Bandit Helm', N'1', N'2', N'2', N'4', N'6', N'43', N'4000', N'1', N'3', N'2', N'3400', N'6350', N'1048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113046102', N'Hidden Catacomb Plate Helm', N'1', N'2', N'2', N'4', N'6', N'48', N'4000', N'1', N'3', N'2', N'3400', N'7700', N'1271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'113046103', N'Hidden Seven Stones Plate Helm', N'1', N'2', N'2', N'4', N'6', N'53', N'4000', N'1', N'3', N'2', N'3400', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114012001', N'Fabric Hose', N'1', N'2', N'0', N'1', N'2', N'5', N'5000', N'0', N'3', N'2', N'1100', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014001', N'Scarlet Fabric Hose', N'1', N'2', N'0', N'1', N'4', N'10', N'5500', N'1', N'3', N'2', N'1100', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014003', N'Model Student Fabric Hose', N'1', N'2', N'0', N'1', N'4', N'19', N'5500', N'1', N'3', N'2', N'1100', N'2100', N'346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014004', N'Holy Fabric Hose', N'1', N'2', N'0', N'1', N'4', N'21', N'5500', N'1', N'3', N'2', N'1100', N'2460', N'405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014006', N'Farvis Pants', N'1', N'2', N'0', N'1', N'4', N'27', N'5500', N'1', N'3', N'2', N'1100', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014007', N'Evil Pants', N'1', N'2', N'0', N'1', N'4', N'30', N'5500', N'1', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014011', N'Lv. 33 Fabric Hose', N'1', N'2', N'0', N'1', N'4', N'33', N'5500', N'1', N'3', N'2', N'1100', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114014012', N'Lv. 35 Fabric Hose', N'1', N'2', N'0', N'1', N'4', N'35', N'5500', N'1', N'3', N'2', N'1100', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114015101', N'Bone Fleur Leggings', N'1', N'2', N'3', N'1', N'5', N'42', N'6000', N'1', N'3', N'2', N'1100', N'8140', N'1343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114015102', N'Catacomb Fabric Leggings', N'1', N'2', N'3', N'1', N'5', N'47', N'6000', N'1', N'3', N'2', N'1100', N'9900', N'1634')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114015103', N'Seven Stones Fabric Leggings', N'1', N'2', N'3', N'1', N'5', N'52', N'6000', N'1', N'3', N'2', N'1100', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114016101', N'Bonehewn Lingee Leggings', N'1', N'2', N'2', N'1', N'6', N'43', N'6500', N'1', N'3', N'2', N'1100', N'8900', N'1468')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114016102', N'Hidden Catacomb Fabric Leggings', N'1', N'2', N'2', N'1', N'6', N'48', N'6500', N'1', N'3', N'2', N'1100', N'10780', N'1779')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114016103', N'Hidden Seven Stones Fabric Leggings', N'1', N'2', N'2', N'1', N'6', N'53', N'6500', N'1', N'3', N'2', N'1100', N'12840', N'2119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114022001', N'Leather Pants', N'1', N'2', N'0', N'2', N'2', N'5', N'5000', N'0', N'3', N'2', N'1600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024001', N'Scarlet Leather Pants', N'1', N'2', N'0', N'2', N'4', N'10', N'5500', N'1', N'3', N'2', N'1600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024003', N'Model Student Leather Pants', N'1', N'2', N'0', N'2', N'4', N'19', N'5500', N'1', N'3', N'2', N'1600', N'2100', N'346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024004', N'Holy Leather Pants', N'1', N'2', N'0', N'2', N'4', N'21', N'5500', N'1', N'3', N'2', N'1600', N'2460', N'405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024006', N'Farvis Leather Pants', N'1', N'2', N'0', N'2', N'4', N'27', N'5500', N'1', N'3', N'2', N'1600', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024007', N'Evil Leather Pants', N'1', N'2', N'0', N'2', N'4', N'30', N'5500', N'1', N'3', N'2', N'1600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024011', N'Lv. 33 Leather Pants', N'1', N'2', N'0', N'2', N'4', N'33', N'5500', N'1', N'3', N'2', N'1600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114024012', N'Lv. 35 Leather Pants', N'1', N'2', N'0', N'2', N'4', N'35', N'5500', N'1', N'3', N'2', N'1600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114025101', N'Bone Beatrice Leather Leggings', N'1', N'2', N'3', N'2', N'5', N'42', N'6000', N'1', N'3', N'2', N'1600', N'8140', N'1343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114025102', N'Catacomb Leather Leggings', N'1', N'2', N'3', N'2', N'5', N'47', N'6000', N'1', N'3', N'2', N'1600', N'9900', N'1634')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114025103', N'Seven Stones Leather Leggings', N'1', N'2', N'3', N'2', N'5', N'52', N'6000', N'1', N'3', N'2', N'1600', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114026101', N'Bonehewn Elodie Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'43', N'6500', N'1', N'3', N'2', N'1600', N'8900', N'1468')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114026102', N'Hidden Catacomb Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'48', N'6500', N'1', N'3', N'2', N'1600', N'10780', N'1779')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114026103', N'Hidden Seven Stones Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'53', N'6500', N'1', N'3', N'2', N'1600', N'12840', N'2119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114032001', N'Chain Puttees', N'1', N'2', N'0', N'3', N'2', N'5', N'5000', N'0', N'3', N'2', N'2400', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034001', N'Scarlet Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'10', N'5500', N'1', N'3', N'2', N'2400', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034003', N'Model Student Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'19', N'5500', N'1', N'3', N'2', N'2400', N'2100', N'346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034004', N'Holy Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'21', N'5500', N'1', N'3', N'2', N'2400', N'2460', N'405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034006', N'Farvis Greaves', N'1', N'2', N'0', N'3', N'4', N'27', N'5500', N'1', N'3', N'2', N'2400', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034007', N'Evil Greaves', N'1', N'2', N'0', N'3', N'4', N'30', N'5500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034011', N'Lv. 33 Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'33', N'5500', N'1', N'3', N'2', N'2400', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114034012', N'Lv. 35 Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'35', N'5500', N'1', N'3', N'2', N'2400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114035101', N'Bone Defenso Chain Greaves', N'1', N'2', N'3', N'3', N'5', N'42', N'6000', N'1', N'3', N'2', N'2400', N'8140', N'1343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114035102', N'Catacomb Chain Greaves', N'1', N'2', N'3', N'3', N'5', N'47', N'6000', N'1', N'3', N'2', N'2400', N'9900', N'1634')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114035103', N'Seven Stones Chain Greaves', N'1', N'2', N'3', N'3', N'5', N'52', N'6000', N'1', N'3', N'2', N'2400', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114036101', N'Bonehewn Hinch Greaves', N'1', N'2', N'2', N'3', N'6', N'43', N'6500', N'1', N'3', N'2', N'2400', N'8900', N'1468')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114036102', N'Hidden Catacomb Chain Greaves', N'1', N'2', N'2', N'3', N'6', N'48', N'6500', N'1', N'3', N'2', N'2400', N'10780', N'1779')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114036103', N'Hidden Seven Stones Chain Greaves', N'1', N'2', N'2', N'3', N'6', N'53', N'6500', N'1', N'3', N'2', N'2400', N'12840', N'2119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114042001', N'Plate Puttees', N'1', N'2', N'0', N'4', N'2', N'5', N'5000', N'0', N'3', N'2', N'4600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044001', N'Scarlet Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'10', N'5500', N'1', N'3', N'2', N'4600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044003', N'Model Student Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'19', N'5500', N'1', N'3', N'2', N'4600', N'2100', N'346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044004', N'Holy Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'21', N'5500', N'1', N'3', N'2', N'4600', N'2460', N'405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044006', N'Farvis Battle Greaves', N'1', N'2', N'0', N'4', N'4', N'27', N'5500', N'1', N'3', N'2', N'4600', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044007', N'Evil Battle Greaves', N'1', N'2', N'0', N'4', N'4', N'30', N'5500', N'1', N'3', N'2', N'4600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044011', N'Lv. 33 Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'33', N'5500', N'1', N'3', N'2', N'4600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114044012', N'Lv. 35 Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'35', N'5500', N'1', N'3', N'2', N'4600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114045101', N'Bone Fergana War Greaves', N'1', N'2', N'3', N'4', N'5', N'42', N'6000', N'1', N'3', N'2', N'4600', N'8140', N'1343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114045102', N'Catacomb Plate Greaves', N'1', N'2', N'3', N'4', N'5', N'47', N'6000', N'1', N'3', N'2', N'4600', N'9900', N'1634')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114045103', N'Seven Stones Plate Greaves', N'1', N'2', N'3', N'4', N'5', N'52', N'6000', N'1', N'3', N'2', N'4600', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114046101', N'Bonehewn Bandit Greaves', N'1', N'2', N'2', N'4', N'6', N'43', N'6500', N'1', N'3', N'2', N'4600', N'8900', N'1468')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114046102', N'Hidden Catacomb Plate Greaves', N'1', N'2', N'2', N'4', N'6', N'48', N'6500', N'1', N'3', N'2', N'4600', N'10780', N'1779')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'114046103', N'Hidden Seven Stones Plate Greaves', N'1', N'2', N'2', N'4', N'6', N'53', N'6500', N'1', N'3', N'2', N'4600', N'12840', N'2119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115012001', N'Fabric Shoes', N'1', N'2', N'0', N'1', N'2', N'2', N'4200', N'0', N'3', N'2', N'600', N'90', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115012101', N'Deliveryman Shoes', N'1', N'2', N'0', N'1', N'2', N'14', N'3500', N'0', N'3', N'2', N'600', N'1020', N'168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014001', N'Scarlet Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'8', N'4400', N'1', N'3', N'2', N'600', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014002', N'Mousetrap Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'17', N'4400', N'1', N'3', N'2', N'600', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014003', N'Model Student Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'18', N'4400', N'1', N'3', N'2', N'600', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014004', N'Holy Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'21', N'4400', N'1', N'3', N'2', N'600', N'2110', N'348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014005', N'Italian Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014006', N'Farvis Shoes', N'1', N'2', N'0', N'1', N'4', N'27', N'4400', N'1', N'3', N'2', N'600', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014007', N'Evil Shoes', N'1', N'2', N'0', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014011', N'Lv. 33 Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'33', N'4400', N'1', N'3', N'2', N'600', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115014013', N'Lv. 37 Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'37', N'4400', N'1', N'3', N'2', N'600', N'5330', N'880')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115015101', N'Bone Fleur Shoes', N'1', N'2', N'3', N'1', N'5', N'42', N'4600', N'1', N'3', N'2', N'600', N'6980', N'1151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115015102', N'Catacomb Fabric Shoes', N'1', N'2', N'3', N'1', N'5', N'47', N'4600', N'1', N'3', N'2', N'600', N'8480', N'1399')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115015103', N'Seven Stones Fabric Shoes', N'1', N'2', N'3', N'1', N'5', N'52', N'4600', N'1', N'3', N'2', N'600', N'10130', N'1671')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115016101', N'Bonehewn Lingee Shoes', N'1', N'2', N'2', N'1', N'6', N'43', N'5000', N'1', N'3', N'2', N'600', N'7630', N'1259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115016102', N'Hidden Catacomb Fabric Shoes', N'1', N'2', N'2', N'1', N'6', N'48', N'5000', N'1', N'3', N'2', N'600', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115016103', N'Hidden Seven Stones Fabric Shoes', N'1', N'2', N'2', N'1', N'6', N'53', N'5000', N'1', N'3', N'2', N'600', N'11000', N'1815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115022001', N'Leather Boots', N'1', N'2', N'0', N'2', N'2', N'2', N'4200', N'0', N'3', N'2', N'800', N'90', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024001', N'Scarlet Leather Boots', N'1', N'2', N'0', N'2', N'4', N'8', N'4400', N'1', N'3', N'2', N'800', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024002', N'Mousetrap Leather Boots', N'1', N'2', N'0', N'2', N'4', N'17', N'4400', N'1', N'3', N'2', N'800', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024003', N'Model Student Leather Boots', N'1', N'2', N'0', N'2', N'4', N'18', N'4400', N'1', N'3', N'2', N'800', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024004', N'Holy Leather Boots', N'1', N'2', N'0', N'2', N'4', N'21', N'4400', N'1', N'3', N'2', N'800', N'2110', N'348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024005', N'Italian Leather Boots', N'1', N'2', N'0', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'800', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024006', N'Farvis Leather Shoes', N'1', N'2', N'0', N'2', N'4', N'27', N'4400', N'1', N'3', N'2', N'800', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024007', N'Evil Leather Shoes', N'1', N'2', N'0', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'800', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024011', N'Lv. 33 Leather Boots', N'1', N'2', N'0', N'2', N'4', N'33', N'4400', N'1', N'3', N'2', N'800', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115024013', N'Lv. 37 Leather Boots', N'1', N'2', N'0', N'2', N'4', N'37', N'4400', N'1', N'3', N'2', N'800', N'5330', N'880')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115025101', N'Bone Beatrice Leather Shoes', N'1', N'2', N'3', N'2', N'5', N'42', N'4600', N'1', N'3', N'2', N'800', N'6980', N'1151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115025102', N'Catacomb Leather Shoes', N'1', N'2', N'3', N'2', N'5', N'47', N'4600', N'1', N'3', N'2', N'800', N'8480', N'1399')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115025103', N'Seven Stones Leather Shoes', N'1', N'2', N'3', N'2', N'5', N'52', N'4600', N'1', N'3', N'2', N'800', N'10130', N'1671')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115026101', N'Bonehewn Elodie Leather Shoes', N'1', N'2', N'2', N'2', N'6', N'43', N'5000', N'1', N'3', N'2', N'800', N'7630', N'1259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115026102', N'Hidden Catacomb Leather Shoes', N'1', N'2', N'2', N'2', N'6', N'48', N'5000', N'1', N'3', N'2', N'800', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115026103', N'Hidden Seven Stones Leather Shoes', N'1', N'2', N'2', N'2', N'6', N'53', N'5000', N'1', N'3', N'2', N'800', N'11000', N'1815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115032001', N'Chain Boots', N'1', N'2', N'0', N'3', N'2', N'2', N'4200', N'0', N'3', N'2', N'1200', N'90', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034001', N'Scarlet Chain Boots', N'1', N'2', N'0', N'3', N'4', N'8', N'4400', N'1', N'3', N'2', N'1200', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034002', N'Mousetrap Chain Boots', N'1', N'2', N'0', N'3', N'4', N'17', N'4400', N'1', N'3', N'2', N'1200', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034003', N'Model Student Chain Boots', N'1', N'2', N'0', N'3', N'4', N'18', N'4400', N'1', N'3', N'2', N'1200', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034004', N'Holy Chain Boots', N'1', N'2', N'0', N'3', N'4', N'21', N'4400', N'1', N'3', N'2', N'1200', N'2110', N'348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034005', N'Italian Chain Boots', N'1', N'2', N'0', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'1200', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034006', N'Farvis Boots', N'1', N'2', N'0', N'3', N'4', N'27', N'4400', N'1', N'3', N'2', N'1200', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034007', N'Evil Boots', N'1', N'2', N'0', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'1200', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034011', N'Lv. 33 Chain Boots', N'1', N'2', N'0', N'3', N'4', N'33', N'4400', N'1', N'3', N'2', N'1200', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115034013', N'Lv. 37 Chain Boots', N'1', N'2', N'0', N'3', N'4', N'37', N'4400', N'1', N'3', N'2', N'1200', N'5330', N'880')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115035101', N'Bone Defenso Chain Boots', N'1', N'2', N'3', N'3', N'5', N'42', N'4600', N'1', N'3', N'2', N'1200', N'6980', N'1151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115035102', N'Catacomb Chain Boots', N'1', N'2', N'3', N'3', N'5', N'47', N'4600', N'1', N'3', N'2', N'1200', N'8480', N'1399')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115035103', N'Seven Stones Chain Boots', N'1', N'2', N'3', N'3', N'5', N'52', N'4600', N'1', N'3', N'2', N'1200', N'10130', N'1671')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115036101', N'Bonehewn Hinch Boots', N'1', N'2', N'2', N'3', N'6', N'43', N'5000', N'1', N'3', N'2', N'1200', N'7630', N'1259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115036102', N'Hidden Catacomb Chain Boots', N'1', N'2', N'2', N'3', N'6', N'48', N'5000', N'1', N'3', N'2', N'1200', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115036103', N'Hidden Seven Stones Chain Boots', N'1', N'2', N'2', N'3', N'6', N'53', N'5000', N'1', N'3', N'2', N'1200', N'11000', N'1815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115042001', N'Plate Boots', N'1', N'2', N'0', N'4', N'2', N'2', N'4200', N'0', N'3', N'2', N'2300', N'90', N'15')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044001', N'Scarlet Plate Boots', N'1', N'2', N'0', N'4', N'4', N'8', N'4400', N'1', N'3', N'2', N'2300', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044002', N'Mousetrap Plate Boots', N'1', N'2', N'0', N'4', N'4', N'17', N'4400', N'1', N'3', N'2', N'2300', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044003', N'Model Student Plate Boots', N'1', N'2', N'0', N'4', N'4', N'18', N'4400', N'1', N'3', N'2', N'2300', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044004', N'Holy Plate Boots', N'1', N'2', N'0', N'4', N'4', N'21', N'4400', N'1', N'3', N'2', N'2300', N'2110', N'348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044005', N'Italian Plate Boots', N'1', N'2', N'0', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'2300', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044006', N'Farvis War Boots', N'1', N'2', N'0', N'4', N'4', N'27', N'4400', N'1', N'3', N'2', N'2300', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044007', N'Evil War Boots', N'1', N'2', N'0', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'2300', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044011', N'Lv. 33 Plate Boots', N'1', N'2', N'0', N'4', N'4', N'33', N'4400', N'1', N'3', N'2', N'2300', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115044013', N'Lv. 37 Plate Boots', N'1', N'2', N'0', N'4', N'4', N'37', N'4400', N'1', N'3', N'2', N'2300', N'5330', N'880')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115045101', N'Bone Fergana War Boots', N'1', N'2', N'3', N'4', N'5', N'42', N'4600', N'1', N'3', N'2', N'2300', N'6980', N'1151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115045102', N'Catacomb Plate Boots', N'1', N'2', N'3', N'4', N'5', N'47', N'4600', N'1', N'3', N'2', N'2300', N'8480', N'1399')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115045103', N'Seven Stones Plate Boots', N'1', N'2', N'3', N'4', N'5', N'52', N'4600', N'1', N'3', N'2', N'2300', N'10130', N'1671')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115046101', N'Bonehewn Bandit War Boots', N'1', N'2', N'2', N'4', N'6', N'43', N'5000', N'1', N'3', N'2', N'2300', N'7630', N'1259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115046102', N'Hidden Catacomb Plate Boots', N'1', N'2', N'2', N'4', N'6', N'48', N'5000', N'1', N'3', N'2', N'2300', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'115046103', N'Hidden Seven Stones Plate Boots', N'1', N'2', N'2', N'4', N'6', N'53', N'5000', N'1', N'3', N'2', N'2300', N'11000', N'1815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116012001', N'Fabric Belt', N'1', N'2', N'0', N'1', N'2', N'6', N'3200', N'0', N'3', N'2', N'200', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014003', N'Model Student Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'18', N'3400', N'1', N'3', N'2', N'200', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014004', N'Holy Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'21', N'3400', N'1', N'3', N'2', N'200', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014005', N'Italian Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'25', N'3400', N'1', N'3', N'2', N'200', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014006', N'Farvis Belt', N'1', N'2', N'0', N'1', N'4', N'27', N'3400', N'1', N'3', N'2', N'200', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014010', N'Lv. 31 Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'31', N'3400', N'1', N'3', N'2', N'200', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014012', N'Lv. 35 Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'200', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116014013', N'Lv. 37 Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'37', N'3400', N'1', N'3', N'2', N'200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116015101', N'Bone Fleur Belt', N'1', N'2', N'3', N'1', N'5', N'42', N'3600', N'1', N'3', N'2', N'200', N'5230', N'863')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116015102', N'Catacomb Fabric Belt', N'1', N'2', N'3', N'1', N'5', N'47', N'3600', N'1', N'3', N'2', N'200', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116015103', N'Seven Stones Fabric Belt', N'1', N'2', N'3', N'1', N'5', N'52', N'3600', N'1', N'3', N'2', N'200', N'7600', N'1254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116016101', N'Bonehewn Lingee Belt', N'1', N'2', N'2', N'1', N'6', N'43', N'4000', N'1', N'3', N'2', N'200', N'5720', N'943')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116016102', N'Hidden Catacomb Fabric Belt', N'1', N'2', N'2', N'1', N'6', N'48', N'4000', N'1', N'3', N'2', N'200', N'6930', N'1143')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116016103', N'Hidden Seven Stones Fabric Belt', N'1', N'2', N'2', N'1', N'6', N'53', N'4000', N'1', N'3', N'2', N'200', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116022001', N'Leather Belt', N'1', N'2', N'0', N'2', N'2', N'6', N'3200', N'0', N'3', N'2', N'300', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024003', N'Model Student Leather Belt', N'1', N'2', N'0', N'2', N'4', N'18', N'3400', N'1', N'3', N'2', N'300', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024004', N'Holy Leather Belt', N'1', N'2', N'0', N'2', N'4', N'21', N'3400', N'1', N'3', N'2', N'300', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024005', N'Italian Leather Belt', N'1', N'2', N'0', N'2', N'4', N'25', N'3400', N'1', N'3', N'2', N'300', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024006', N'Farvis Leather Belt', N'1', N'2', N'0', N'2', N'4', N'27', N'3400', N'1', N'3', N'2', N'300', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024010', N'Lv. 31 Leather Belt', N'1', N'2', N'0', N'2', N'4', N'31', N'3400', N'1', N'3', N'2', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024012', N'Lv. 35 Leather Belt', N'1', N'2', N'0', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'300', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116024013', N'Lv. 37 Leather Belt', N'1', N'2', N'0', N'2', N'4', N'37', N'3400', N'1', N'3', N'2', N'300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116025101', N'Bone Beatrice Leather Belt', N'1', N'2', N'3', N'2', N'5', N'42', N'3600', N'1', N'3', N'2', N'300', N'5230', N'863')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116025102', N'Catacomb Leather Belt', N'1', N'2', N'3', N'2', N'5', N'47', N'3600', N'1', N'3', N'2', N'300', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116025103', N'Seven Stones Leather Belt', N'1', N'2', N'3', N'2', N'5', N'52', N'3600', N'1', N'3', N'2', N'300', N'7600', N'1254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116026101', N'Bonehewn Elodie Leather Belt', N'1', N'2', N'2', N'2', N'6', N'43', N'4000', N'1', N'3', N'2', N'300', N'5720', N'943')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116026102', N'Hidden Catacomb Leather Belt', N'1', N'2', N'2', N'2', N'6', N'48', N'4000', N'1', N'3', N'2', N'300', N'6930', N'1143')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116026103', N'Hidden Seven Stones Leather Belt', N'1', N'2', N'2', N'2', N'6', N'53', N'4000', N'1', N'3', N'2', N'300', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116032001', N'Chain Belt', N'1', N'2', N'0', N'3', N'2', N'6', N'3200', N'0', N'3', N'2', N'500', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034003', N'Model Student Chain Belt', N'1', N'2', N'0', N'3', N'4', N'18', N'3400', N'1', N'3', N'2', N'500', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034004', N'Holy Chain Belt', N'1', N'2', N'0', N'3', N'4', N'21', N'3400', N'1', N'3', N'2', N'500', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034005', N'Italian Chain Belt', N'1', N'2', N'0', N'3', N'4', N'25', N'3400', N'1', N'3', N'2', N'500', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034006', N'Farvis Chain Belt', N'1', N'2', N'0', N'3', N'4', N'27', N'3400', N'1', N'3', N'2', N'500', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034010', N'Lv. 31 Chain Belt', N'1', N'2', N'0', N'3', N'4', N'31', N'3400', N'1', N'3', N'2', N'500', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034012', N'Lv. 35 Chain Belt', N'1', N'2', N'0', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'500', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116034013', N'Lv. 37 Chain Belt', N'1', N'2', N'0', N'3', N'4', N'37', N'3400', N'1', N'3', N'2', N'500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116035101', N'Bone Defenso Chain Belt', N'1', N'2', N'3', N'3', N'5', N'42', N'3600', N'1', N'3', N'2', N'500', N'5230', N'863')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116035102', N'Catacomb Chain Belt', N'1', N'2', N'3', N'3', N'5', N'47', N'3600', N'1', N'3', N'2', N'500', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116035103', N'Seven Stones Chain Belt', N'1', N'2', N'3', N'3', N'5', N'52', N'3600', N'1', N'3', N'2', N'500', N'7600', N'1254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116036101', N'Bonehewn Hinch Chain Belt', N'1', N'2', N'2', N'3', N'6', N'43', N'4000', N'1', N'3', N'2', N'500', N'5720', N'943')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116036102', N'Hidden Catacomb Chain Belt', N'1', N'2', N'2', N'3', N'6', N'48', N'4000', N'1', N'3', N'2', N'500', N'6930', N'1143')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116036103', N'Hidden Seven Stones Chain Belt', N'1', N'2', N'2', N'3', N'6', N'53', N'4000', N'1', N'3', N'2', N'500', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116042001', N'Plate Belt', N'1', N'2', N'0', N'4', N'2', N'6', N'3200', N'0', N'3', N'2', N'900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044003', N'Model Student Plate Belt', N'1', N'2', N'0', N'4', N'4', N'18', N'3400', N'1', N'3', N'2', N'900', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044004', N'Holy Plate Belt', N'1', N'2', N'0', N'4', N'4', N'21', N'3400', N'1', N'3', N'2', N'900', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044005', N'Italian Plate Belt', N'1', N'2', N'0', N'4', N'4', N'25', N'3400', N'1', N'3', N'2', N'900', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044006', N'Farvis War Belt', N'1', N'2', N'0', N'4', N'4', N'27', N'3400', N'1', N'3', N'2', N'900', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044010', N'Lv. 31 Plate Belt', N'1', N'2', N'0', N'4', N'4', N'31', N'3400', N'1', N'3', N'2', N'900', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044012', N'Lv. 35 Plate Belt', N'1', N'2', N'0', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116044013', N'Lv. 37 Plate Belt', N'1', N'2', N'0', N'4', N'4', N'37', N'3400', N'1', N'3', N'2', N'900', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116045101', N'Bone Fergana War Belt', N'1', N'2', N'3', N'4', N'5', N'42', N'3600', N'1', N'3', N'2', N'900', N'5230', N'863')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116045102', N'Catacomb Plate Belt', N'1', N'2', N'3', N'4', N'5', N'47', N'3600', N'1', N'3', N'2', N'900', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116045103', N'Seven Stones Plate Belt', N'1', N'2', N'3', N'4', N'5', N'52', N'3600', N'1', N'3', N'2', N'900', N'7600', N'1254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116046101', N'Bonehewn Bandit War Belt', N'1', N'2', N'2', N'4', N'6', N'43', N'4000', N'1', N'3', N'2', N'900', N'5720', N'943')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116046102', N'Hidden Catacomb Plate Belt', N'1', N'2', N'2', N'4', N'6', N'48', N'4000', N'1', N'3', N'2', N'900', N'6930', N'1143')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'116046103', N'Hidden Seven Stones Plate Belt', N'1', N'2', N'2', N'4', N'6', N'53', N'4000', N'1', N'3', N'2', N'900', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'117012701', N'Tourmaline Crystal Necklace', N'1', N'2', N'0', N'17', N'2', N'13', N'0', N'0', N'1', N'0', N'400', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'118012101', N'Tantalus Crystal Earrings', N'1', N'2', N'0', N'17', N'2', N'18', N'0', N'0', N'1', N'0', N'200', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'119012501', N'Friendship Ring', N'1', N'2', N'0', N'17', N'2', N'7', N'0', N'0', N'1', N'0', N'300', N'570', N'94')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'119012502', N'Zombie Ring', N'1', N'2', N'0', N'17', N'2', N'7', N'0', N'0', N'1', N'0', N'300', N'570', N'94')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120012001', N'Fabric Gloves', N'1', N'2', N'0', N'1', N'2', N'3', N'4200', N'0', N'3', N'2', N'300', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014001', N'Scarlet Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'11', N'4400', N'1', N'3', N'2', N'300', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014002', N'Mousetrap Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'16', N'4400', N'1', N'3', N'2', N'300', N'1270', N'210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014003', N'Model Student Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'18', N'4400', N'1', N'3', N'2', N'300', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014004', N'Holy Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'21', N'4400', N'1', N'3', N'2', N'300', N'1930', N'319')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014005', N'Italian Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'300', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014006', N'Farvis Gloves', N'1', N'2', N'0', N'1', N'4', N'27', N'4400', N'1', N'3', N'2', N'300', N'2890', N'477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014007', N'Evil Gloves', N'1', N'2', N'0', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'300', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014011', N'Lv. 33 Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'33', N'4400', N'1', N'3', N'2', N'300', N'4030', N'665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120014013', N'Lv. 37 Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'37', N'4400', N'1', N'3', N'2', N'300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120015101', N'Bone Fleur Gloves', N'1', N'2', N'3', N'1', N'5', N'42', N'4600', N'1', N'3', N'2', N'300', N'6390', N'1054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120015102', N'Catacomb Fabric Gloves', N'1', N'2', N'3', N'1', N'5', N'47', N'4600', N'1', N'3', N'2', N'300', N'7780', N'1284')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120015103', N'Seven Stones Fabric Gloves', N'1', N'2', N'3', N'1', N'5', N'52', N'4600', N'1', N'3', N'2', N'300', N'9290', N'1533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120016101', N'Bonehewn Lingee Gloves', N'1', N'2', N'2', N'1', N'6', N'43', N'5000', N'1', N'3', N'2', N'300', N'6990', N'1153')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120016102', N'Hidden Catacomb Fabric Gloves', N'1', N'2', N'2', N'1', N'6', N'48', N'5000', N'1', N'3', N'2', N'300', N'8470', N'1398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120016103', N'Hidden Seven Stones Fabric Gloves', N'1', N'2', N'2', N'1', N'6', N'53', N'5000', N'1', N'3', N'2', N'300', N'10090', N'1665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120022001', N'Leather Gloves', N'1', N'2', N'0', N'2', N'2', N'3', N'4200', N'0', N'3', N'2', N'400', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024001', N'Scarlet Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'11', N'4400', N'1', N'3', N'2', N'400', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024002', N'Mousetrap Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'16', N'4400', N'1', N'3', N'2', N'400', N'1270', N'210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024003', N'Model Student Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'18', N'4400', N'1', N'3', N'2', N'300', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024004', N'Holy Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'21', N'4400', N'1', N'3', N'2', N'400', N'1930', N'319')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024005', N'Italian Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'400', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024006', N'Farvis Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'27', N'4400', N'1', N'3', N'2', N'400', N'2890', N'477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024007', N'Evil Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'400', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024011', N'Lv. 33 Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'33', N'4400', N'1', N'3', N'2', N'400', N'4030', N'665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120024013', N'Lv. 37 Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'37', N'4400', N'1', N'3', N'2', N'400', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120025101', N'Bone Beatrice Leather Gloves', N'1', N'2', N'3', N'2', N'5', N'42', N'4600', N'1', N'3', N'2', N'400', N'6390', N'1054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120025102', N'Catacomb Leather Gloves', N'1', N'2', N'3', N'2', N'5', N'47', N'4600', N'1', N'3', N'2', N'400', N'7780', N'1284')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120025103', N'Seven Stones Leather Gloves', N'1', N'2', N'3', N'2', N'5', N'52', N'4600', N'1', N'3', N'2', N'400', N'9290', N'1533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120026101', N'Bonehewn Elodie Leather Gloves', N'1', N'2', N'2', N'2', N'6', N'43', N'5000', N'1', N'3', N'2', N'400', N'6990', N'1153')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120026102', N'Hidden Catacomb Leather Gloves', N'1', N'2', N'2', N'2', N'6', N'48', N'5000', N'1', N'3', N'2', N'400', N'8470', N'1398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120026103', N'Hidden Seven Stones Leather Gloves', N'1', N'2', N'2', N'2', N'6', N'53', N'5000', N'1', N'3', N'2', N'400', N'10090', N'1665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120032001', N'Chain Gloves', N'1', N'2', N'0', N'3', N'2', N'3', N'4200', N'0', N'3', N'2', N'600', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034001', N'Scarlet Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'11', N'4400', N'1', N'3', N'2', N'600', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034002', N'Mousetrap Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'16', N'4400', N'1', N'3', N'2', N'600', N'1270', N'210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034003', N'Model Student Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'18', N'4400', N'1', N'3', N'2', N'300', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034004', N'Holy Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'21', N'4400', N'1', N'3', N'2', N'600', N'1930', N'319')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034005', N'Italian Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034006', N'Farvis Heavy Gloves', N'1', N'2', N'0', N'3', N'4', N'27', N'4400', N'1', N'3', N'2', N'600', N'2890', N'477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034007', N'Evil Heavy Gloves', N'1', N'2', N'0', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034011', N'Lv. 33 Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'33', N'4400', N'1', N'3', N'2', N'600', N'4030', N'665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120034013', N'Lv. 37 Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'37', N'4400', N'1', N'3', N'2', N'600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120035101', N'Bone Defenso Chain Gloves', N'1', N'2', N'3', N'3', N'5', N'42', N'4600', N'1', N'3', N'2', N'600', N'6390', N'1054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120035102', N'Catacomb Chain Gloves', N'1', N'2', N'3', N'3', N'5', N'47', N'4600', N'1', N'3', N'2', N'600', N'7780', N'1284')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120035103', N'Seven Stones Chain Gloves', N'1', N'2', N'3', N'3', N'5', N'52', N'4600', N'1', N'3', N'2', N'600', N'9290', N'1533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120036101', N'Bonehewn Hinch Chain Gloves', N'1', N'2', N'2', N'3', N'6', N'43', N'5000', N'1', N'3', N'2', N'600', N'6990', N'1153')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120036102', N'Hidden Catacomb Chain Gloves', N'1', N'2', N'2', N'3', N'6', N'48', N'5000', N'1', N'3', N'2', N'600', N'8470', N'1398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120036103', N'Hidden Seven Stones Chain Gloves', N'1', N'2', N'2', N'3', N'6', N'53', N'5000', N'1', N'3', N'2', N'600', N'10090', N'1665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120042001', N'Plate Gloves', N'1', N'2', N'0', N'4', N'2', N'3', N'4200', N'0', N'3', N'2', N'1100', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044001', N'Scarlet Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'11', N'4400', N'1', N'3', N'2', N'1100', N'730', N'121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044002', N'Mousetrap Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'16', N'4400', N'1', N'3', N'2', N'1100', N'1270', N'210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044003', N'Model Student Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'18', N'4400', N'1', N'3', N'2', N'300', N'1520', N'250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044004', N'Holy Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'21', N'4400', N'1', N'3', N'2', N'1100', N'1930', N'319')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044005', N'Italian Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'1100', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044006', N'Farvis Battle Gloves', N'1', N'2', N'0', N'4', N'4', N'27', N'4400', N'1', N'3', N'2', N'1100', N'2890', N'477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044007', N'Evil Battle Gloves', N'1', N'2', N'0', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'1100', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044011', N'Lv. 33 Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'33', N'4400', N'1', N'3', N'2', N'1100', N'4030', N'665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120044013', N'Lv. 37 Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'37', N'4400', N'1', N'3', N'2', N'1100', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120045101', N'Bone Fergana War Gloves', N'1', N'2', N'3', N'4', N'5', N'42', N'4600', N'1', N'3', N'2', N'1100', N'6390', N'1054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120045102', N'Catacomb Plate Gloves', N'1', N'2', N'3', N'4', N'5', N'47', N'4600', N'1', N'3', N'2', N'1100', N'7780', N'1284')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120045103', N'Seven Stones Plate Gloves', N'1', N'2', N'3', N'4', N'5', N'52', N'4600', N'1', N'3', N'2', N'1100', N'9290', N'1533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120046101', N'Bonehewn Bandit War Gloves', N'1', N'2', N'2', N'4', N'6', N'43', N'5000', N'1', N'3', N'2', N'1100', N'6990', N'1153')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120046102', N'Hidden Catacomb Plate Gloves', N'1', N'2', N'2', N'4', N'6', N'48', N'5000', N'1', N'3', N'2', N'1100', N'8470', N'1398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'120046103', N'Hidden Seven Stones Plate Gloves', N'1', N'2', N'2', N'4', N'6', N'53', N'5000', N'1', N'3', N'2', N'1100', N'10090', N'1665')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014001', N'Bronze Blade', N'1', N'1', N'5', N'5', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014002', N'Iron Edge', N'1', N'1', N'5', N'5', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014003', N'Silver Sword', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014004', N'Titanium Tyrant', N'1', N'1', N'5', N'5', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014005', N'Platinum Ray', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014006', N'Excellence', N'1', N'1', N'5', N'5', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014007', N'Phoenix', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014008', N'Golden Beam', N'1', N'1', N'5', N'5', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014009', N'Expert Dark Eye', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211014010', N'Expert Hell Hound', N'1', N'1', N'5', N'5', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015001', N'Gloves Sword', N'1', N'1', N'3', N'5', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015002', N'Armored Butcher Sword', N'1', N'1', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015003', N'Boozatron Sword', N'1', N'1', N'3', N'5', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015004', N'Hammer Butcher Sword', N'1', N'1', N'3', N'5', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015005', N'Cursed Cataphract Sword', N'1', N'1', N'3', N'5', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015006', N'Giant Mole Sword', N'1', N'1', N'3', N'5', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015007', N'Dewey Decimator Sword', N'1', N'1', N'3', N'5', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015008', N'Cataphract Sword', N'1', N'1', N'3', N'5', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015009', N'Crimson Gloves Sword', N'1', N'1', N'3', N'5', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015010', N'Minotauros Lord Sword', N'1', N'1', N'3', N'5', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015011', N'Sinful Seraph Sword', N'1', N'1', N'3', N'5', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015012', N'Massive Butcher Sword', N'1', N'1', N'3', N'5', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015013', N'Haken Platina Sword', N'1', N'1', N'3', N'5', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015014', N'Viper Sword', N'1', N'1', N'3', N'5', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015015', N'Stone Golem Sword', N'1', N'1', N'3', N'5', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015016', N'Massive Mole Sword', N'1', N'1', N'3', N'5', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015017', N'Goliath Gorilla Sword', N'1', N'1', N'3', N'5', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015018', N'Giant Rafflesia Sword', N'1', N'1', N'3', N'5', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015019', N'Cyborg Gorilla Sword', N'1', N'1', N'3', N'5', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015020', N'Sand Golem Sword', N'1', N'1', N'3', N'5', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015021', N'Giant Sandworm Sword', N'1', N'1', N'3', N'5', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015022', N'Spider Lady Sword', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015023', N'Baron Sword', N'1', N'1', N'3', N'5', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015024', N'Joker Sword', N'1', N'1', N'3', N'5', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015025', N'Chimera Sword', N'1', N'1', N'3', N'5', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015026', N'Conjugo Sword', N'1', N'1', N'3', N'5', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015027', N'Dire Knight Sword', N'1', N'1', N'3', N'5', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015028', N'Sparkle Sword', N'1', N'1', N'3', N'5', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015029', N'Demon King Sword', N'1', N'1', N'3', N'5', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015030', N'Mad Latiel Replica Sword', N'1', N'1', N'3', N'5', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015031', N'Gagarth Replica Sword', N'1', N'1', N'3', N'5', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015032', N'Aurosiac Replica Sword', N'1', N'1', N'3', N'5', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015501', N'Gloves Precious Sword', N'1', N'1', N'3', N'5', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015502', N'Armored Butcher Precious Sword', N'1', N'1', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015503', N'Boozatron Precious Sword', N'1', N'1', N'3', N'5', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015504', N'Hammer Butcher Precious Sword', N'1', N'1', N'3', N'5', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015505', N'Cursed Cataphract Precious Sword', N'1', N'1', N'3', N'5', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015506', N'Giant Mole Precious Sword', N'1', N'1', N'3', N'5', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015507', N'Dewey Decimator Precious Sword', N'1', N'1', N'3', N'5', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015508', N'Cataphract Precious Sword', N'1', N'1', N'3', N'5', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015509', N'Crimson Gloves Precious Sword', N'1', N'1', N'3', N'5', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015510', N'Minotauros Lord Precious Sword', N'1', N'1', N'3', N'5', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015511', N'Sinful Seraph Precious Sword', N'1', N'1', N'3', N'5', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015512', N'Massive Butcher Precious Sword', N'1', N'1', N'3', N'5', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015513', N'Haken Platina Precious Sword', N'1', N'1', N'3', N'5', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015514', N'Viper Precious Sword', N'1', N'1', N'3', N'5', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015515', N'Stone Golem Precious Sword', N'1', N'1', N'3', N'5', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015516', N'Massive Mole Precious Sword', N'1', N'1', N'3', N'5', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015517', N'Goliath Gorilla Precious Sword', N'1', N'1', N'3', N'5', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015518', N'Giant Rafflesia Precious Sword', N'1', N'1', N'3', N'5', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015519', N'Cyborg Gorilla Precious Sword', N'1', N'1', N'3', N'5', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015520', N'Sand Golem Precious Sword', N'1', N'1', N'3', N'5', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015521', N'Giant Sandworm Precious Sword', N'1', N'1', N'3', N'5', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015522', N'Spider Lady Precious Sword', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015523', N'Baron Precious Sword', N'1', N'1', N'3', N'5', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015524', N'Joker Precious Sword', N'1', N'1', N'3', N'5', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015525', N'Chimera Precious Sword', N'1', N'1', N'3', N'5', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015526', N'Conjugo Precious Sword', N'1', N'1', N'3', N'5', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015527', N'Dire Knight Precious Sword', N'1', N'1', N'3', N'5', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015528', N'Sparkle Precious Sword', N'1', N'1', N'3', N'5', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015529', N'Demon King Precious Sword', N'1', N'1', N'3', N'5', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015530', N'Mad Latiel Precious Sword', N'1', N'1', N'3', N'5', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015531', N'Gagarth Precious Sword', N'1', N'1', N'3', N'5', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211015532', N'Aurosiac Precious Sword', N'1', N'1', N'3', N'5', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016001', N'Gloves Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'9', N'10000', N'1', N'3', N'1', N'2000', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016002', N'Armored Butcher Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016003', N'Boozatron Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'12', N'10000', N'1', N'3', N'1', N'2000', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016004', N'Hammer Butcher Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'14', N'10000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016005', N'Cursed Cataphract Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'15', N'10000', N'1', N'3', N'1', N'2000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016006', N'Giant Mole Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'17', N'10000', N'1', N'3', N'1', N'2000', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016007', N'Dewey Decimator Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'19', N'10000', N'1', N'3', N'1', N'2000', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016008', N'Cataphract Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'21', N'10000', N'1', N'3', N'1', N'2000', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016009', N'Crimson Gloves Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'22', N'10000', N'1', N'3', N'1', N'2000', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016010', N'Minotauros Lord Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016011', N'Sinful Seraph Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016012', N'Massive Butcher Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'28', N'10000', N'1', N'3', N'1', N'2000', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016013', N'Haken Platina Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'26', N'10000', N'1', N'3', N'1', N'2000', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016014', N'Viper Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'31', N'10000', N'1', N'3', N'1', N'2000', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016015', N'Stone Golem Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'29', N'10000', N'1', N'3', N'1', N'2000', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016016', N'Massive Mole Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016017', N'Goliath Gorilla Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'33', N'10000', N'1', N'3', N'1', N'2000', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016018', N'Giant Rafflesia Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'38', N'10000', N'1', N'3', N'1', N'2000', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016019', N'Cyborg Gorilla Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016020', N'Sand Golem Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'36', N'10000', N'1', N'3', N'1', N'2000', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016021', N'Giant Sandworm Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'39', N'10000', N'1', N'3', N'1', N'2000', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016022', N'Spider Lady Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016023', N'Baron Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016024', N'Joker Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'44', N'10000', N'1', N'3', N'1', N'2000', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016025', N'Chimera Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'46', N'10000', N'1', N'3', N'1', N'2000', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016026', N'Conjugo Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016027', N'Dire Knight Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'49', N'10000', N'1', N'3', N'1', N'2000', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016028', N'Sparkle Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'51', N'10000', N'1', N'3', N'1', N'2000', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016029', N'Demon King Genuine Sword', N'1', N'2', N'2', N'5', N'6', N'52', N'10000', N'1', N'3', N'1', N'2000', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016030', N'Mad Latiel Genuine Sword', N'1', N'2', N'3', N'5', N'6', N'53', N'9000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016031', N'Gagarth Genuine Sword', N'1', N'2', N'3', N'5', N'6', N'54', N'9000', N'1', N'3', N'1', N'2000', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211016032', N'Aurosiac Genuine Sword', N'1', N'2', N'3', N'5', N'6', N'55', N'9000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024001', N'Outrage Mace', N'1', N'1', N'5', N'6', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024002', N'Violent Axe', N'1', N'1', N'5', N'6', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024003', N'Malice Axe', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024004', N'Tormenter', N'1', N'1', N'5', N'6', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024005', N'Turbulence', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024006', N'Chopper', N'1', N'1', N'5', N'6', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024007', N'Mauler', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024008', N'Bloodspill', N'1', N'1', N'5', N'6', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18330', N'3025')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024009', N'Expert Bloody Murderer', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2203', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211024010', N'Expert Destruction', N'1', N'1', N'5', N'6', N'4', N'55', N'8000', N'1', N'3', N'1', N'2203', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025001', N'Gloves Mace', N'1', N'1', N'3', N'6', N'5', N'9', N'9000', N'1', N'3', N'1', N'2200', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025002', N'Armored Butcher Axe', N'1', N'1', N'3', N'6', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025003', N'Boozatron Axe', N'1', N'1', N'3', N'6', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025004', N'Hammer Butcher Axe', N'1', N'1', N'3', N'6', N'5', N'14', N'9000', N'1', N'3', N'1', N'2200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025005', N'Cursed Cataphract Axe', N'1', N'1', N'3', N'6', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025006', N'Giant Mole Axe', N'1', N'1', N'3', N'6', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025007', N'Dewey Decimator Axe', N'1', N'1', N'3', N'6', N'5', N'19', N'9000', N'1', N'3', N'1', N'2200', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025008', N'Cataphract Axe', N'1', N'1', N'3', N'6', N'5', N'21', N'9000', N'1', N'3', N'1', N'2200', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025009', N'Crimson Gloves Axe', N'1', N'1', N'3', N'6', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025010', N'Minotauros Lord Axe', N'1', N'1', N'3', N'6', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025011', N'Sinful Seraph Axe', N'1', N'1', N'3', N'6', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025012', N'Massive Butcher Mace', N'1', N'1', N'3', N'6', N'5', N'28', N'9000', N'1', N'3', N'1', N'2200', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025013', N'Haken Platina Mace', N'1', N'1', N'3', N'6', N'5', N'26', N'9000', N'1', N'3', N'1', N'2200', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025014', N'Viper Axe', N'1', N'1', N'3', N'6', N'5', N'31', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025015', N'Stone Golem Mace', N'1', N'1', N'3', N'6', N'5', N'29', N'9000', N'1', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025016', N'Massive Mole Axe', N'1', N'1', N'3', N'6', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025017', N'Goliath Gorilla Axe', N'1', N'1', N'3', N'6', N'5', N'33', N'9000', N'1', N'3', N'1', N'2200', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025018', N'Giant Rafflesia Axe', N'1', N'1', N'3', N'6', N'5', N'38', N'9000', N'1', N'3', N'1', N'2200', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025019', N'Cyborg Gorilla Axe', N'1', N'1', N'3', N'6', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025020', N'Sand Golem Axe', N'1', N'1', N'3', N'6', N'5', N'36', N'9000', N'1', N'3', N'1', N'2200', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025021', N'Giant Sandworm Axe', N'1', N'1', N'3', N'6', N'5', N'39', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025022', N'Spider Lady Axe', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025023', N'Baron Axe', N'1', N'1', N'3', N'6', N'5', N'43', N'9000', N'1', N'3', N'1', N'2200', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025024', N'Joker Axe', N'1', N'1', N'3', N'6', N'5', N'44', N'9000', N'1', N'3', N'1', N'2200', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025025', N'Chimera Axe', N'1', N'1', N'3', N'6', N'5', N'46', N'9000', N'1', N'3', N'1', N'2200', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025026', N'Conjugo Axe', N'1', N'1', N'3', N'6', N'5', N'48', N'9000', N'1', N'3', N'1', N'2200', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025027', N'Dire Knight Axe', N'1', N'1', N'3', N'6', N'5', N'49', N'9000', N'1', N'3', N'1', N'2200', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025028', N'Sparkle Axe', N'1', N'1', N'3', N'6', N'5', N'51', N'9000', N'1', N'3', N'1', N'2200', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025029', N'Demon King Axe', N'1', N'1', N'3', N'6', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025030', N'Mad Latiel Replica Axe', N'1', N'1', N'3', N'6', N'5', N'53', N'9000', N'1', N'3', N'1', N'2200', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025031', N'Gagarth Replica Axe', N'1', N'1', N'3', N'6', N'5', N'54', N'9000', N'1', N'3', N'1', N'2200', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025032', N'Aurosiac Replica Axe', N'1', N'1', N'3', N'6', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025501', N'Gloves Precious Axe', N'1', N'1', N'3', N'6', N'5', N'9', N'9000', N'1', N'3', N'1', N'2200', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025502', N'Armored Butcher Precious Axe', N'1', N'1', N'3', N'6', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025503', N'Boozatron Precious Axe', N'1', N'1', N'3', N'6', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025504', N'Hammer Butcher Precious Axe', N'1', N'1', N'3', N'6', N'5', N'14', N'9000', N'1', N'3', N'1', N'2200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025505', N'Cursed Cataphract Precious Axe', N'1', N'1', N'3', N'6', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025506', N'Giant Mole Precious Axe', N'1', N'1', N'3', N'6', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025507', N'Dewey Decimator Precious Axe', N'1', N'1', N'3', N'6', N'5', N'19', N'9000', N'1', N'3', N'1', N'2200', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025508', N'Cataphract Precious Axe', N'1', N'1', N'3', N'6', N'5', N'21', N'9000', N'1', N'3', N'1', N'2200', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025509', N'Crimson Gloves Precious Axe', N'1', N'1', N'3', N'6', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025510', N'Minotauros Lord Precious Axe', N'1', N'1', N'3', N'6', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025511', N'Sinful Seraph Precious Axe', N'1', N'1', N'3', N'6', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025512', N'Massive Butcher Precious Axe', N'1', N'1', N'3', N'6', N'5', N'28', N'9000', N'1', N'3', N'1', N'2200', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025513', N'Haken Platina Precious Axe', N'1', N'1', N'3', N'6', N'5', N'26', N'9000', N'1', N'3', N'1', N'2200', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025514', N'Viper Precious Axe', N'1', N'1', N'3', N'6', N'5', N'31', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025515', N'Stone Golem Precious Axe', N'1', N'1', N'3', N'6', N'5', N'29', N'9000', N'1', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025516', N'Massive Mole Precious Axe', N'1', N'1', N'3', N'6', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025517', N'Goliath Gorilla Precious Axe', N'1', N'1', N'3', N'6', N'5', N'33', N'9000', N'1', N'3', N'1', N'2200', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025518', N'Giant Rafflesia Precious Axe', N'1', N'1', N'3', N'6', N'5', N'38', N'9000', N'1', N'3', N'1', N'2200', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025519', N'Cyborg Gorilla Precious Axe', N'1', N'1', N'3', N'6', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025520', N'Sand Golem Precious Axe', N'1', N'1', N'3', N'6', N'5', N'36', N'9000', N'1', N'3', N'1', N'2200', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025521', N'Giant Sandworm Precious Axe', N'1', N'1', N'3', N'6', N'5', N'39', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025522', N'Spider Lady Precious Axe', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025523', N'Baron Precious Axe', N'1', N'1', N'3', N'6', N'5', N'43', N'9000', N'1', N'3', N'1', N'2200', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025524', N'Joker Precious Axe', N'1', N'1', N'3', N'6', N'5', N'44', N'9000', N'1', N'3', N'1', N'2200', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025525', N'Chimera Precious Axe', N'1', N'1', N'3', N'6', N'5', N'46', N'9000', N'1', N'3', N'1', N'2200', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025526', N'Conjugo Precious Axe', N'1', N'1', N'3', N'6', N'5', N'48', N'9000', N'1', N'3', N'1', N'2200', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025527', N'Dire Knight Precious Axe', N'1', N'1', N'3', N'6', N'5', N'49', N'9000', N'1', N'3', N'1', N'2200', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025528', N'Sparkle Precious Axe', N'1', N'1', N'3', N'6', N'5', N'51', N'9000', N'1', N'3', N'1', N'2200', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025529', N'Demon King Precious Axe', N'1', N'1', N'3', N'6', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025530', N'Mad Latiel Precious Axe', N'1', N'1', N'3', N'6', N'5', N'53', N'9000', N'1', N'3', N'1', N'2200', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025531', N'Gagarth Precious Axe', N'1', N'1', N'3', N'6', N'5', N'54', N'9000', N'1', N'3', N'1', N'2200', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211025532', N'Aurosiac Precious Axe', N'1', N'1', N'3', N'6', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026001', N'Gloves Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'9', N'10000', N'1', N'3', N'1', N'2200', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026002', N'Armored Butcher Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'10', N'10000', N'1', N'3', N'1', N'2200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026003', N'Boozatron Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'12', N'10000', N'1', N'3', N'1', N'2200', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026004', N'Hammer Butcher Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'14', N'10000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026005', N'Cursed Cataphract Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'15', N'10000', N'1', N'3', N'1', N'2200', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026006', N'Giant Mole Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'17', N'10000', N'1', N'3', N'1', N'2200', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026007', N'Dewey Decimator Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'19', N'10000', N'1', N'3', N'1', N'2200', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026008', N'Cataphract Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'21', N'10000', N'1', N'3', N'1', N'2200', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026009', N'Crimson Gloves Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'22', N'10000', N'1', N'3', N'1', N'2200', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026010', N'Minotauros Lord Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'23', N'10000', N'1', N'3', N'1', N'2200', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026011', N'Sinful Seraph Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'23', N'10000', N'1', N'3', N'1', N'2200', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026012', N'Massive Butcher Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'28', N'10000', N'1', N'3', N'1', N'2200', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026013', N'Haken Platina Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'26', N'10000', N'1', N'3', N'1', N'2200', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026014', N'Viper Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'31', N'10000', N'1', N'3', N'1', N'2200', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026015', N'Stone Golem Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'29', N'10000', N'1', N'3', N'1', N'2200', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026016', N'Massive Mole Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'34', N'10000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026017', N'Goliath Gorilla Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'33', N'10000', N'1', N'3', N'1', N'2200', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026018', N'Giant Rafflesia Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'38', N'10000', N'1', N'3', N'1', N'2200', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026019', N'Cyborg Gorilla Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'34', N'10000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026020', N'Sand Golem Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'36', N'10000', N'1', N'3', N'1', N'2200', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026021', N'Giant Sandworm Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'39', N'10000', N'1', N'3', N'1', N'2200', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026022', N'Spider Lady Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026023', N'Baron Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'43', N'10000', N'1', N'3', N'1', N'2200', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026024', N'Joker Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'44', N'10000', N'1', N'3', N'1', N'2200', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026025', N'Chimera Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'46', N'10000', N'1', N'3', N'1', N'2200', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026026', N'Conjugo Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'48', N'10000', N'1', N'3', N'1', N'2200', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026027', N'Dire Knight Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'49', N'10000', N'1', N'3', N'1', N'2200', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026028', N'Sparkle Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'51', N'10000', N'1', N'3', N'1', N'2200', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026029', N'Demon King Genuine Axe', N'1', N'2', N'2', N'6', N'6', N'52', N'10000', N'1', N'3', N'1', N'2200', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026030', N'Mad Latiel Genuine Axe', N'1', N'2', N'3', N'6', N'6', N'53', N'9000', N'1', N'3', N'1', N'2200', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026031', N'Gagarth Genuine Axe', N'1', N'2', N'3', N'6', N'6', N'54', N'9000', N'1', N'3', N'1', N'2200', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211026032', N'Aurosiac Genuine Axe', N'1', N'2', N'3', N'6', N'6', N'55', N'9000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034001', N'Super Magic Sword', N'1', N'1', N'5', N'7', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034002', N'Marvelous Magic Sword', N'1', N'1', N'5', N'7', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034003', N'Superb Magic Sword', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034004', N'Soul Slicer', N'1', N'1', N'5', N'7', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034005', N'Demon Dicer', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034006', N'Gremlin Gasher', N'1', N'1', N'5', N'7', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034007', N'Maniac Melter', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034008', N'Demon King Slayer', N'1', N'1', N'5', N'7', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034009', N'Expert Avenger', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211034010', N'Maniac Melter', N'1', N'1', N'5', N'7', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035001', N'Gloves Magic Sword', N'1', N'1', N'3', N'7', N'5', N'9', N'9000', N'1', N'3', N'1', N'2500', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035002', N'Armored Butcher Magic Sword', N'1', N'1', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035003', N'Boozatron Magic Sword', N'1', N'1', N'3', N'7', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035004', N'Hammer Butcher Magic Sword', N'1', N'1', N'3', N'7', N'5', N'14', N'9000', N'1', N'3', N'1', N'2500', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035005', N'Cursed Cataphract Magic Sword', N'1', N'1', N'3', N'7', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035006', N'Giant Mole Magic Sword', N'1', N'1', N'3', N'7', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035007', N'Dewey Decimator Magic Sword', N'1', N'1', N'3', N'7', N'5', N'19', N'9000', N'1', N'3', N'1', N'2500', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035008', N'Cataphract Magic Sword', N'1', N'1', N'3', N'7', N'5', N'21', N'9000', N'1', N'3', N'1', N'2500', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035009', N'Crimson Gloves Magic Sword', N'1', N'1', N'3', N'7', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035010', N'Minotauros Lord Magic Sword', N'1', N'1', N'3', N'7', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035011', N'Sinful Seraph Magic Sword', N'1', N'1', N'3', N'7', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035012', N'Massive Butcher Magic Sword', N'1', N'1', N'3', N'7', N'5', N'28', N'9000', N'1', N'3', N'1', N'2500', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035013', N'Haken Platina Magic Sword', N'1', N'1', N'3', N'7', N'5', N'26', N'9000', N'1', N'3', N'1', N'2500', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035014', N'Viper Magic Sword', N'1', N'1', N'3', N'7', N'5', N'31', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035015', N'Stone Golem Magic Sword', N'1', N'1', N'3', N'7', N'5', N'29', N'9000', N'1', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035016', N'Massive Mole Magic Sword', N'1', N'1', N'3', N'7', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035017', N'Goliath Gorilla Magic Sword', N'1', N'1', N'3', N'7', N'5', N'33', N'9000', N'1', N'3', N'1', N'2500', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035018', N'Giant Rafflesia Magic Sword', N'1', N'1', N'3', N'7', N'5', N'38', N'9000', N'1', N'3', N'1', N'2500', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035019', N'Cyborg Gorilla Magic Sword', N'1', N'1', N'3', N'7', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035020', N'Sand Golem Magic Sword', N'1', N'1', N'3', N'7', N'5', N'36', N'9000', N'1', N'3', N'1', N'2500', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035021', N'Giant Sandworm Magic Sword', N'1', N'1', N'3', N'7', N'5', N'39', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035022', N'Spider Lady Magic Sword', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035023', N'Baron Witch Sword', N'1', N'1', N'3', N'7', N'5', N'43', N'9000', N'1', N'3', N'1', N'2500', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035024', N'Joker Witch Sword', N'1', N'1', N'3', N'7', N'5', N'44', N'9000', N'1', N'3', N'1', N'2500', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035025', N'Chimera Witch Sword', N'1', N'1', N'3', N'7', N'5', N'46', N'9000', N'1', N'3', N'1', N'2500', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035026', N'Conjugo Magic Sword', N'1', N'1', N'3', N'7', N'5', N'48', N'9000', N'1', N'3', N'1', N'2500', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035027', N'Dire Knight Magic Sword', N'1', N'1', N'3', N'7', N'5', N'49', N'9000', N'1', N'3', N'1', N'2500', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035028', N'Sparkle Magic Sword', N'1', N'1', N'3', N'7', N'5', N'51', N'9000', N'1', N'3', N'1', N'2500', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035029', N'Demon King Magic Sword', N'1', N'1', N'3', N'7', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035030', N'Mad Latiel Replica Witch Sword', N'1', N'1', N'3', N'7', N'5', N'53', N'9000', N'1', N'3', N'1', N'2500', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035031', N'Gagarth Replica Witch Sword', N'1', N'1', N'3', N'7', N'5', N'54', N'9000', N'1', N'3', N'1', N'2500', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035032', N'Aurosiac Replica Witch Sword', N'1', N'1', N'3', N'7', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035501', N'Gloves Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'9', N'9000', N'1', N'3', N'1', N'2500', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035502', N'Armored Butcher Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035503', N'Boozatron Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035504', N'Hammer Butcher Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'14', N'9000', N'1', N'3', N'1', N'2500', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035505', N'Cursed Cataphract Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035506', N'Giant Mole Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035507', N'Dewey Decimator Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'19', N'9000', N'1', N'3', N'1', N'2500', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035508', N'Cataphract Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'21', N'9000', N'1', N'3', N'1', N'2500', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035509', N'Crimson Gloves Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035510', N'Minotauros Lord Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035511', N'Sinful Seraph Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035512', N'Massive Butcher Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'28', N'9000', N'1', N'3', N'1', N'2500', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035513', N'Haken Platina Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'26', N'9000', N'1', N'3', N'1', N'2500', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035514', N'Viper Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'31', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035515', N'Stone Golem Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'29', N'9000', N'1', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035516', N'Massive Mole Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035517', N'Goliath Gorilla Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'33', N'9000', N'1', N'3', N'1', N'2500', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035518', N'Giant Rafflesia Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'38', N'9000', N'1', N'3', N'1', N'2500', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035519', N'Cyborg Gorilla Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035520', N'Sand Golem Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'36', N'9000', N'1', N'3', N'1', N'2500', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035521', N'Giant Sandworm Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'39', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035522', N'Spider Lady Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035523', N'Baron Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'43', N'9000', N'1', N'3', N'1', N'2500', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035524', N'Joker Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'44', N'9000', N'1', N'3', N'1', N'2500', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035525', N'Chimera Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'46', N'9000', N'1', N'3', N'1', N'2500', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035526', N'Conjugo Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'48', N'9000', N'1', N'3', N'1', N'2500', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035527', N'Dire Knight Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'49', N'9000', N'1', N'3', N'1', N'2500', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035528', N'Sparkle Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'51', N'9000', N'1', N'3', N'1', N'2500', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035529', N'Demon King Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035530', N'Mad Latiel Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'53', N'9000', N'1', N'3', N'1', N'2500', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035531', N'Gagarth Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'54', N'9000', N'1', N'3', N'1', N'2500', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211035532', N'Aurosiac Precious Magic Sword', N'1', N'1', N'3', N'7', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036001', N'Gloves Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'9', N'10000', N'1', N'3', N'1', N'2500', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036002', N'Armored Butcher Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'10', N'10000', N'1', N'3', N'1', N'2500', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036003', N'Boozatron Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'12', N'10000', N'1', N'3', N'1', N'2500', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036004', N'Hammer Butcher Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'14', N'10000', N'1', N'3', N'1', N'2500', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036005', N'Cursed Cataphract Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'15', N'10000', N'1', N'3', N'1', N'2500', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036006', N'Giant Mole Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'17', N'10000', N'1', N'3', N'1', N'2500', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036007', N'Dewey Decimator Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'19', N'10000', N'1', N'3', N'1', N'2500', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036008', N'Cataphract Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'21', N'10000', N'1', N'3', N'1', N'2500', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036009', N'Crimson Gloves Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'22', N'10000', N'1', N'3', N'1', N'2500', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036010', N'Minotauros Lord Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'23', N'10000', N'1', N'3', N'1', N'2500', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036011', N'Sinful Seraph Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'23', N'10000', N'1', N'3', N'1', N'2500', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036012', N'Massive Butcher Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'28', N'10000', N'1', N'3', N'1', N'2500', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036013', N'Haken Platina Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'26', N'10000', N'1', N'3', N'1', N'2500', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036014', N'Viper Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'31', N'10000', N'1', N'3', N'1', N'2500', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036015', N'Stone Golem Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'29', N'10000', N'1', N'3', N'1', N'2500', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036016', N'Massive Mole Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'34', N'10000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036017', N'Goliath Gorilla Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'33', N'10000', N'1', N'3', N'1', N'2500', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036018', N'Giant Rafflesia Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'38', N'10000', N'1', N'3', N'1', N'2500', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036019', N'Cyborg Gorilla Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'34', N'10000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036020', N'Sand Golem Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'36', N'10000', N'1', N'3', N'1', N'2500', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036021', N'Giant Sandworm Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'39', N'10000', N'1', N'3', N'1', N'2500', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036022', N'Spider Lady Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036023', N'Baron Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'43', N'10000', N'1', N'3', N'1', N'2500', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036024', N'Joker Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'44', N'10000', N'1', N'3', N'1', N'2500', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036025', N'Chimera Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'46', N'10000', N'1', N'3', N'1', N'2500', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036026', N'Conjugo Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'48', N'10000', N'1', N'3', N'1', N'2500', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036027', N'Dire Knight Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'49', N'10000', N'1', N'3', N'1', N'2500', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036028', N'Sparkle Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'51', N'10000', N'1', N'3', N'1', N'2500', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036029', N'Demon King Genuine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'52', N'10000', N'1', N'3', N'1', N'2500', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036030', N'Mad Latiel Genuine Witch Sword', N'1', N'2', N'3', N'7', N'6', N'53', N'9000', N'1', N'3', N'1', N'2500', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036031', N'Gagarth Genuine Witch Sword', N'1', N'2', N'3', N'7', N'6', N'54', N'9000', N'1', N'3', N'1', N'2500', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211036032', N'Aurosiac Genuine Witch Sword', N'1', N'2', N'3', N'7', N'6', N'55', N'9000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044001', N'Trickster Scythe', N'1', N'1', N'5', N'8', N'4', N'10', N'8000', N'1', N'3', N'1', N'2600', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044002', N'Charmer Scythe', N'1', N'1', N'5', N'8', N'4', N'15', N'8000', N'1', N'3', N'1', N'2600', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044003', N'Soothsayer Scythe', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044004', N'Aquila', N'1', N'1', N'5', N'8', N'4', N'25', N'8000', N'1', N'3', N'1', N'2600', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044005', N'Buteo', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044006', N'Bateleur', N'1', N'1', N'5', N'8', N'4', N'35', N'8000', N'1', N'3', N'1', N'2600', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044007', N'Caracara', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044008', N'Lammergeier', N'1', N'1', N'5', N'8', N'4', N'45', N'8000', N'1', N'3', N'1', N'2600', N'18330', N'3025')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044009', N'Expert Albatross', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211044010', N'Bateleur', N'1', N'1', N'5', N'8', N'4', N'55', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045001', N'Gloves Scythe', N'1', N'1', N'3', N'8', N'5', N'9', N'9000', N'1', N'3', N'1', N'2600', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045002', N'Armored Butcher Scythe', N'1', N'1', N'3', N'8', N'5', N'10', N'9000', N'1', N'3', N'1', N'2600', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045003', N'Boozatron Scythe', N'1', N'1', N'3', N'8', N'5', N'12', N'9000', N'1', N'3', N'1', N'2600', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045004', N'Hammer Butcher Scythe', N'1', N'1', N'3', N'8', N'5', N'14', N'9000', N'1', N'3', N'1', N'2600', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045005', N'Cursed Cataphract Scythe', N'1', N'1', N'3', N'8', N'5', N'15', N'9000', N'1', N'3', N'1', N'2600', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045006', N'Giant Mole Scythe', N'1', N'1', N'3', N'8', N'5', N'17', N'9000', N'1', N'3', N'1', N'2600', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045007', N'Dewey Decimator Scythe', N'1', N'1', N'3', N'8', N'5', N'19', N'9000', N'1', N'3', N'1', N'2600', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045008', N'Cataphract Scythe', N'1', N'1', N'3', N'8', N'5', N'21', N'9000', N'1', N'3', N'1', N'2600', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045009', N'Crimson Gloves Scythe', N'1', N'1', N'3', N'8', N'5', N'22', N'9000', N'1', N'3', N'1', N'2600', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045010', N'Minotauros Lord Scythe', N'1', N'1', N'3', N'8', N'5', N'23', N'9000', N'1', N'3', N'1', N'2600', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045011', N'Sinful Seraph Scythe', N'1', N'1', N'3', N'8', N'5', N'23', N'9000', N'1', N'3', N'1', N'2600', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045012', N'Massive Butcher Scythe', N'1', N'1', N'3', N'8', N'5', N'28', N'9000', N'1', N'3', N'1', N'2600', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045013', N'Haken Platina Scythe', N'1', N'1', N'3', N'8', N'5', N'26', N'9000', N'1', N'3', N'1', N'2600', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045014', N'Viper Scythe', N'1', N'1', N'3', N'8', N'5', N'31', N'9000', N'1', N'3', N'1', N'2600', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045015', N'Stone Golem Scythe', N'1', N'1', N'3', N'8', N'5', N'29', N'9000', N'1', N'3', N'1', N'2600', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045016', N'Massive Mole Scythe', N'1', N'1', N'3', N'8', N'5', N'34', N'9000', N'1', N'3', N'1', N'2600', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045017', N'Goliath Gorilla Scythe', N'1', N'1', N'3', N'8', N'5', N'33', N'9000', N'1', N'3', N'1', N'2600', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045018', N'Giant Rafflesia Scythe', N'1', N'1', N'3', N'8', N'5', N'38', N'9000', N'1', N'3', N'1', N'2600', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045019', N'Cyborg Gorilla Scythe', N'1', N'1', N'3', N'8', N'5', N'34', N'9000', N'1', N'3', N'1', N'2600', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045020', N'Sand Golem Scythe', N'1', N'1', N'3', N'8', N'5', N'36', N'9000', N'1', N'3', N'1', N'2600', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045021', N'Giant Sandworm Scythe', N'1', N'1', N'3', N'8', N'5', N'39', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045022', N'Spider Lady Scythe', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045023', N'Baron Scythe', N'1', N'1', N'3', N'8', N'5', N'43', N'9000', N'1', N'3', N'1', N'2600', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045024', N'Joker Scythe', N'1', N'1', N'3', N'8', N'5', N'44', N'9000', N'1', N'3', N'1', N'2600', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045025', N'Chimera Scythe', N'1', N'1', N'3', N'8', N'5', N'46', N'9000', N'1', N'3', N'1', N'2600', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045026', N'Conjugo Scythe', N'1', N'1', N'3', N'8', N'5', N'48', N'9000', N'1', N'3', N'1', N'2600', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045027', N'Dire Knight Scythe', N'1', N'1', N'3', N'8', N'5', N'49', N'9000', N'1', N'3', N'1', N'2600', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045028', N'Sparkle Scythe', N'1', N'1', N'3', N'8', N'5', N'51', N'9000', N'1', N'3', N'1', N'2600', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045029', N'Demon King Scythe', N'1', N'1', N'3', N'8', N'5', N'52', N'9000', N'1', N'3', N'1', N'2600', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045030', N'Mad Latiel Replica Scythe', N'1', N'1', N'3', N'8', N'5', N'53', N'9000', N'1', N'3', N'1', N'2600', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045031', N'Gagarth Replica Scythe', N'1', N'1', N'3', N'8', N'5', N'54', N'9000', N'1', N'3', N'1', N'2600', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045032', N'Aurosiac Replica Scythe', N'1', N'1', N'3', N'8', N'5', N'55', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045501', N'Gloves Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'9', N'9000', N'1', N'3', N'1', N'2600', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045502', N'Armored Butcher Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'10', N'9000', N'1', N'3', N'1', N'2600', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045503', N'Boozatron Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'12', N'9000', N'1', N'3', N'1', N'2600', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045504', N'Hammer Butcher Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'14', N'9000', N'1', N'3', N'1', N'2600', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045505', N'Cursed Cataphract Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'15', N'9000', N'1', N'3', N'1', N'2600', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045506', N'Giant Mole Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'17', N'9000', N'1', N'3', N'1', N'2600', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045507', N'Dewey Decimator Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'19', N'9000', N'1', N'3', N'1', N'2600', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045508', N'Cataphract Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'21', N'9000', N'1', N'3', N'1', N'2600', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045509', N'Crimson Gloves Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'22', N'9000', N'1', N'3', N'1', N'2600', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045510', N'Minotauros Lord Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'23', N'9000', N'1', N'3', N'1', N'2600', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045511', N'Sinful Seraph Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'23', N'9000', N'1', N'3', N'1', N'2600', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045512', N'Massive Butcher Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'28', N'9000', N'1', N'3', N'1', N'2600', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045513', N'Haken Platina Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'26', N'9000', N'1', N'3', N'1', N'2600', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045514', N'Viper Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'31', N'9000', N'1', N'3', N'1', N'2600', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045515', N'Stone Golem Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'29', N'9000', N'1', N'3', N'1', N'2600', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045516', N'Massive Mole Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'34', N'9000', N'1', N'3', N'1', N'2600', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045517', N'Goliath Gorilla Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'33', N'9000', N'1', N'3', N'1', N'2600', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045518', N'Giant Rafflesia Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'38', N'9000', N'1', N'3', N'1', N'2600', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045519', N'Cyborg Gorilla Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'34', N'9000', N'1', N'3', N'1', N'2600', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045520', N'Sand Golem Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'36', N'9000', N'1', N'3', N'1', N'2600', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045521', N'Giant Sandworm Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'39', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045522', N'Spider Lady Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045523', N'Baron Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'43', N'9000', N'1', N'3', N'1', N'2600', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045524', N'Joker Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'44', N'9000', N'1', N'3', N'1', N'2600', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045525', N'Chimera Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'46', N'9000', N'1', N'3', N'1', N'2600', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045526', N'Conjugo Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'48', N'9000', N'1', N'3', N'1', N'2600', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045527', N'Dire Knight Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'49', N'9000', N'1', N'3', N'1', N'2600', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045528', N'Sparkle Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'51', N'9000', N'1', N'3', N'1', N'2600', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045529', N'Demon King Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'52', N'9000', N'1', N'3', N'1', N'2600', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045530', N'Mad Latiel Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'53', N'9000', N'1', N'3', N'1', N'2600', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045531', N'Gagarth Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'54', N'9000', N'1', N'3', N'1', N'2600', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211045532', N'Aurosiac Precious Scythe', N'1', N'1', N'3', N'8', N'5', N'55', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046001', N'Gloves Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'9', N'10000', N'1', N'3', N'1', N'2600', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046002', N'Armored Butcher Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'10', N'10000', N'1', N'3', N'1', N'2600', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046003', N'Boozatron Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'12', N'10000', N'1', N'3', N'1', N'2600', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046004', N'Hammer Butcher Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'14', N'10000', N'1', N'3', N'1', N'2600', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046005', N'Cursed Cataphract Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'15', N'10000', N'1', N'3', N'1', N'2600', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046006', N'Giant Mole Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'17', N'10000', N'1', N'3', N'1', N'2600', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046007', N'Dewey Decimator Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'19', N'10000', N'1', N'3', N'1', N'2600', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046008', N'Cataphract Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'21', N'10000', N'1', N'3', N'1', N'2600', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046009', N'Crimson Gloves Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'22', N'10000', N'1', N'3', N'1', N'2600', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046010', N'Minotauros Lord Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'23', N'10000', N'1', N'3', N'1', N'2600', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046011', N'Sinful Seraph Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'23', N'10000', N'1', N'3', N'1', N'2600', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046012', N'Massive Butcher Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'28', N'10000', N'1', N'3', N'1', N'2600', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046013', N'Haken Platina Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'26', N'10000', N'1', N'3', N'1', N'2600', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046014', N'Viper Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'31', N'10000', N'1', N'3', N'1', N'2600', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046015', N'Stone Golem Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'29', N'10000', N'1', N'3', N'1', N'2600', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046016', N'Massive Mole Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'34', N'10000', N'1', N'3', N'1', N'2600', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046017', N'Goliath Gorilla Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'33', N'10000', N'1', N'3', N'1', N'2600', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046018', N'Giant Rafflesia Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'38', N'10000', N'1', N'3', N'1', N'2600', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046019', N'Cyborg Gorilla Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'34', N'10000', N'1', N'3', N'1', N'2600', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046020', N'Sand Golem Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'36', N'10000', N'1', N'3', N'1', N'2600', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046021', N'Giant Sandworm Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'39', N'10000', N'1', N'3', N'1', N'2600', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046022', N'Spider Lady Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046023', N'Baron Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'43', N'10000', N'1', N'3', N'1', N'2600', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046024', N'Joker Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'44', N'10000', N'1', N'3', N'1', N'2600', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046025', N'Chimera Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'46', N'10000', N'1', N'3', N'1', N'2600', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046026', N'Conjugo Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'48', N'10000', N'1', N'3', N'1', N'2600', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046027', N'Dire Knight Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'49', N'10000', N'1', N'3', N'1', N'2600', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046028', N'Sparkle Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'51', N'10000', N'1', N'3', N'1', N'2600', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046029', N'Demon King Genuine Scythe', N'1', N'2', N'2', N'8', N'6', N'52', N'10000', N'1', N'3', N'1', N'2600', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046030', N'Mad Latiel Genuine Scythe', N'1', N'2', N'3', N'8', N'6', N'53', N'9000', N'1', N'3', N'1', N'2600', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046031', N'Gagarth Genuine Scythe', N'1', N'2', N'3', N'8', N'6', N'54', N'9000', N'1', N'3', N'1', N'2600', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211046032', N'Aurosiac Genuine Scythe', N'1', N'2', N'3', N'8', N'6', N'55', N'9000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054001', N'Grasper Gauntlet', N'1', N'1', N'5', N'9', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054002', N'Hook Gauntlet', N'1', N'1', N'5', N'9', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054003', N'Grip Gauntlet', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054004', N'Clang', N'1', N'1', N'5', N'9', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054005', N'Bang', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054006', N'Crasher', N'1', N'1', N'5', N'9', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054007', N'Clatter', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054008', N'Booming Roar', N'1', N'1', N'5', N'9', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054009', N'Expert Ox Breed', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211054010', N'Expert Hammer Leech', N'1', N'1', N'5', N'9', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055001', N'Gloves Gauntlets', N'1', N'1', N'3', N'9', N'5', N'9', N'9000', N'1', N'3', N'1', N'2300', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055002', N'Armored Butcher Gauntlets', N'1', N'1', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055003', N'Boozatron Gauntlets', N'1', N'1', N'3', N'9', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055004', N'Hammer Butcher Gauntlets', N'1', N'1', N'3', N'9', N'5', N'14', N'9000', N'1', N'3', N'1', N'2300', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055005', N'Cursed Cataphract Gauntlets', N'1', N'1', N'3', N'9', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055006', N'Giant Mole Gauntlets', N'1', N'1', N'3', N'9', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055007', N'Dewey Decimator Gauntlets', N'1', N'1', N'3', N'9', N'5', N'19', N'9000', N'1', N'3', N'1', N'2300', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055008', N'Cataphract Gauntlets', N'1', N'1', N'3', N'9', N'5', N'21', N'9000', N'1', N'3', N'1', N'2300', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055009', N'Crimson Gloves Gauntlets', N'1', N'1', N'3', N'9', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055010', N'Minotauros Lord Gauntlets', N'1', N'1', N'3', N'9', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055011', N'Sinful Seraph Gauntlets', N'1', N'1', N'3', N'9', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055012', N'Massive Butcher Gauntlets', N'1', N'1', N'3', N'9', N'5', N'28', N'9000', N'1', N'3', N'1', N'2300', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055013', N'Haken Platina Gauntlets', N'1', N'1', N'3', N'9', N'5', N'26', N'9000', N'1', N'3', N'1', N'2300', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055014', N'Viper Gauntlets', N'1', N'1', N'3', N'9', N'5', N'31', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055015', N'Stone Golem Gauntlets', N'1', N'1', N'3', N'9', N'5', N'29', N'9000', N'1', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055016', N'Massive Mole Gauntlets', N'1', N'1', N'3', N'9', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055017', N'Goliath Gorilla Gauntlets', N'1', N'1', N'3', N'9', N'5', N'33', N'9000', N'1', N'3', N'1', N'2300', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055018', N'Giant Rafflesia Gauntlets', N'1', N'1', N'3', N'9', N'5', N'38', N'9000', N'1', N'3', N'1', N'2300', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055019', N'Cyborg Gorilla Gauntlets', N'1', N'1', N'3', N'9', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055020', N'Sand Golem Gauntlets', N'1', N'1', N'3', N'9', N'5', N'36', N'9000', N'1', N'3', N'1', N'2300', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055021', N'Giant Sandworm Gauntlets', N'1', N'1', N'3', N'9', N'5', N'39', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055022', N'Spider Lady Gauntlets', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055023', N'Baron Gauntlet', N'1', N'1', N'3', N'9', N'5', N'43', N'9000', N'1', N'3', N'1', N'2300', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055024', N'Joker Gauntlet', N'1', N'1', N'3', N'9', N'5', N'44', N'9000', N'1', N'3', N'1', N'2300', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055025', N'Chimera Gauntlet', N'1', N'1', N'3', N'9', N'5', N'46', N'9000', N'1', N'3', N'1', N'2300', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055026', N'Conjugo Gauntlet', N'1', N'1', N'3', N'9', N'5', N'48', N'9000', N'1', N'3', N'1', N'2300', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055027', N'Dire Knight Gauntlet', N'1', N'1', N'3', N'9', N'5', N'49', N'9000', N'1', N'3', N'1', N'2300', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055028', N'Sparkle Gauntlet', N'1', N'1', N'3', N'9', N'5', N'51', N'9000', N'1', N'3', N'1', N'2300', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055029', N'Demon King Gauntlet', N'1', N'1', N'3', N'9', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055030', N'Mad Latiel Replica Gauntlets', N'1', N'1', N'3', N'9', N'5', N'53', N'9000', N'1', N'3', N'1', N'2300', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055031', N'Gagarth Replica Gauntlets', N'1', N'1', N'3', N'9', N'5', N'54', N'9000', N'1', N'3', N'1', N'2300', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055032', N'Aurosiac Replica Gauntlets', N'1', N'1', N'3', N'9', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055501', N'Gloves Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'9', N'9000', N'1', N'3', N'1', N'2300', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055502', N'Armored Butcher Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055503', N'Boozatron Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055504', N'Hammer Butcher Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'14', N'9000', N'1', N'3', N'1', N'2300', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055505', N'Cursed Cataphract Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055506', N'Giant Mole Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055507', N'Dewey Decimator Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'19', N'9000', N'1', N'3', N'1', N'2300', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055508', N'Cataphract Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'21', N'9000', N'1', N'3', N'1', N'2300', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055509', N'Crimson Gloves Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055510', N'Minotauros Lord Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055511', N'Sinful Seraph Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055512', N'Massive Butcher Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'28', N'9000', N'1', N'3', N'1', N'2300', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055513', N'Haken Platina Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'26', N'9000', N'1', N'3', N'1', N'2300', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055514', N'Viper Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'31', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055515', N'Stone Golem Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'29', N'9000', N'1', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055516', N'Massive Mole Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055517', N'Goliath Gorilla Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'33', N'9000', N'1', N'3', N'1', N'2300', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055518', N'Giant Rafflesia Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'38', N'9000', N'1', N'3', N'1', N'2300', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055519', N'Cyborg Gorilla Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055520', N'Sand Golem Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'36', N'9000', N'1', N'3', N'1', N'2300', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055521', N'Giant Sandworm Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'39', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055522', N'Spider Lady Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055523', N'Baron Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'43', N'9000', N'1', N'3', N'1', N'2300', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055524', N'Joker Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'44', N'9000', N'1', N'3', N'1', N'2300', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055525', N'Chimera Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'46', N'9000', N'1', N'3', N'1', N'2300', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055526', N'Conjugo Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'48', N'9000', N'1', N'3', N'1', N'2300', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055527', N'Dire Knight Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'49', N'9000', N'1', N'3', N'1', N'2300', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055528', N'Sparkle Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'51', N'9000', N'1', N'3', N'1', N'2300', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055529', N'Demon King Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055530', N'Mad Latiel Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'53', N'9000', N'1', N'3', N'1', N'2300', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055531', N'Gagarth Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'54', N'9000', N'1', N'3', N'1', N'2300', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211055532', N'Aurosiac Precious Gauntlet', N'1', N'1', N'3', N'9', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056001', N'Gloves Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'9', N'10000', N'1', N'3', N'1', N'2300', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056002', N'Armored Butcher Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'10', N'10000', N'1', N'3', N'1', N'2300', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056003', N'Boozatron Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'12', N'10000', N'1', N'3', N'1', N'2300', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056004', N'Hammer Butcher Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'14', N'10000', N'1', N'3', N'1', N'2300', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056005', N'Cursed Cataphract Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'15', N'10000', N'1', N'3', N'1', N'2300', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056006', N'Giant Mole Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'17', N'10000', N'1', N'3', N'1', N'2300', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056007', N'Dewey Decimator Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'19', N'10000', N'1', N'3', N'1', N'2300', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056008', N'Cataphract Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'21', N'10000', N'1', N'3', N'1', N'2300', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056009', N'Crimson Gloves Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'22', N'10000', N'1', N'3', N'1', N'2300', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056010', N'Minotauros Lord Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'23', N'10000', N'1', N'3', N'1', N'2300', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056011', N'Sinful Seraph Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'23', N'10000', N'1', N'3', N'1', N'2300', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056012', N'Massive Butcher Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'28', N'10000', N'1', N'3', N'1', N'2300', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056013', N'Haken Platina Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'26', N'10000', N'1', N'3', N'1', N'2300', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056014', N'Viper Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'31', N'10000', N'1', N'3', N'1', N'2300', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056015', N'Stone Golem Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'29', N'10000', N'1', N'3', N'1', N'2300', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056016', N'Massive Mole Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'34', N'10000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056017', N'Goliath Gorilla Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'33', N'10000', N'1', N'3', N'1', N'2300', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056018', N'Giant Rafflesia Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'38', N'10000', N'1', N'3', N'1', N'2300', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056019', N'Cyborg Gorilla Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'34', N'10000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056020', N'Sand Golem Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'36', N'10000', N'1', N'3', N'1', N'2300', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056021', N'Giant Sandworm Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'39', N'10000', N'1', N'3', N'1', N'2300', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056022', N'Spider Lady Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056023', N'Baron Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'43', N'10000', N'1', N'3', N'1', N'2300', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056024', N'Joker Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'44', N'10000', N'1', N'3', N'1', N'2300', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056025', N'Chimera Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'46', N'10000', N'1', N'3', N'1', N'2300', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056026', N'Conjugo Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'48', N'10000', N'1', N'3', N'1', N'2300', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056027', N'Dire Knight Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'49', N'10000', N'1', N'3', N'1', N'2300', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056028', N'Sparkle Genuine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'51', N'10000', N'1', N'3', N'1', N'2300', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056029', N'Demon King Genuine Sword', N'1', N'2', N'2', N'9', N'6', N'52', N'10000', N'1', N'3', N'1', N'2300', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056030', N'Mad Latiel Genuine Gauntlets', N'1', N'2', N'3', N'9', N'6', N'53', N'9000', N'1', N'3', N'1', N'2300', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056031', N'Gagarth Genuine Gauntlets', N'1', N'2', N'3', N'9', N'6', N'54', N'9000', N'1', N'3', N'1', N'2300', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211056032', N'Aurosiac Genuine Gauntlets', N'1', N'2', N'3', N'9', N'6', N'55', N'9000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064001', N'Edged Claw', N'1', N'1', N'5', N'10', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064002', N'Serrated Claw', N'1', N'1', N'5', N'10', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064003', N'Salient Claw', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064004', N'Shifter', N'1', N'1', N'5', N'10', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064005', N'Ripper', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064006', N'Leviathan', N'1', N'1', N'5', N'10', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064007', N'Monstrosity', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064008', N'Big Paw', N'1', N'1', N'5', N'10', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18330', N'3025')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064009', N'Expert Storm Rider', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211064010', N'Expert Dual Ghost', N'1', N'1', N'5', N'10', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065001', N'Gloves Claw', N'1', N'1', N'3', N'10', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065002', N'Armored Butcher Claw', N'1', N'1', N'3', N'10', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065003', N'Boozatron Claw', N'1', N'1', N'3', N'10', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065004', N'Hammer Butcher Claw', N'1', N'1', N'3', N'10', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065005', N'Cursed Cataphract Claw', N'1', N'1', N'3', N'10', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065006', N'Giant Mole Claw', N'1', N'1', N'3', N'10', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065007', N'Dewey Decimator Claw', N'1', N'1', N'3', N'10', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065008', N'Cataphract Claw', N'1', N'1', N'3', N'10', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065009', N'Crimson Gloves Claw', N'1', N'1', N'3', N'10', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065010', N'Minotauros Lord Claw', N'1', N'1', N'3', N'10', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065011', N'Sinful Seraph Claw', N'1', N'1', N'3', N'10', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065012', N'Massive Butcher Claw', N'1', N'1', N'3', N'10', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065013', N'Haken Platina Claw', N'1', N'1', N'3', N'10', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065014', N'Viper Claw', N'1', N'1', N'3', N'10', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065015', N'Stone Golem Claw', N'1', N'1', N'3', N'10', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065016', N'Massive Mole Claw', N'1', N'1', N'3', N'10', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065017', N'Goliath Gorilla Claw', N'1', N'1', N'3', N'10', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065018', N'Giant Rafflesia Claw', N'1', N'1', N'3', N'10', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065019', N'Cyborg Gorilla Claw', N'1', N'1', N'3', N'10', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065020', N'Sand Golem Claw', N'1', N'1', N'3', N'10', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065021', N'Giant Sandworm Claw', N'1', N'1', N'3', N'10', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065022', N'Spider Lady Claw', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065023', N'Baron Claw', N'1', N'1', N'3', N'10', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065024', N'Joker Claw', N'1', N'1', N'3', N'10', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065025', N'Chimera Claw', N'1', N'1', N'3', N'10', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065026', N'Conjugo Claw', N'1', N'1', N'3', N'10', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065027', N'Dire Knight Claw', N'1', N'1', N'3', N'10', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065028', N'Sparkle Claw', N'1', N'1', N'3', N'10', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065029', N'Demon King Claw', N'1', N'1', N'3', N'10', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065030', N'Mad Latiel Replica Claw', N'1', N'1', N'3', N'10', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065031', N'Gagarth Replica Claw', N'1', N'1', N'3', N'10', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065032', N'Aurosiac Replica Claw', N'1', N'1', N'3', N'10', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065501', N'Gloves Precious Claw', N'1', N'1', N'3', N'10', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065502', N'Armored Butcher Precious Claw', N'1', N'1', N'3', N'10', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065503', N'Boozatron Precious Claw', N'1', N'1', N'3', N'10', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065504', N'Hammer Butcher Precious Claw', N'1', N'1', N'3', N'10', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065505', N'Cursed Cataphract Precious Claw', N'1', N'1', N'3', N'10', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065506', N'Giant Mole Precious Claw', N'1', N'1', N'3', N'10', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065507', N'Dewey Decimator Precious Claw', N'1', N'1', N'3', N'10', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065508', N'Cataphract Precious Claw', N'1', N'1', N'3', N'10', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065509', N'Crimson Gloves Precious Claw', N'1', N'1', N'3', N'10', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065510', N'Minotauros Lord Precious Claw', N'1', N'1', N'3', N'10', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065511', N'Sinful Seraph Precious Claw', N'1', N'1', N'3', N'10', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065512', N'Massive Butcher Precious Claw', N'1', N'1', N'3', N'10', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065513', N'Haken Platina Precious Claw', N'1', N'1', N'3', N'10', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065514', N'Viper Precious Claw', N'1', N'1', N'3', N'10', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065515', N'Stone Golem Precious Claw', N'1', N'1', N'3', N'10', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065516', N'Massive Mole Precious Claw', N'1', N'1', N'3', N'10', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065517', N'Goliath Gorilla Precious Claw', N'1', N'1', N'3', N'10', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065518', N'Giant Rafflesia Precious Claw', N'1', N'1', N'3', N'10', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065519', N'Cyborg Gorilla Precious Claw', N'1', N'1', N'3', N'10', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065520', N'Sand Golem Precious Claw', N'1', N'1', N'3', N'10', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065521', N'Giant Sandworm Precious Claw', N'1', N'1', N'3', N'10', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065522', N'Spider Lady Precious Claw', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065523', N'Baron Precious Claw', N'1', N'1', N'3', N'10', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065524', N'Joker Precious Claw', N'1', N'1', N'3', N'10', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065525', N'Chimera Precious Claw', N'1', N'1', N'3', N'10', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065526', N'Conjugo Precious Claw', N'1', N'1', N'3', N'10', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065527', N'Dire Knight Precious Claw', N'1', N'1', N'3', N'10', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065528', N'Sparkle Precious Claw', N'1', N'1', N'3', N'10', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065529', N'Demon King Precious Claw', N'1', N'1', N'3', N'10', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065530', N'Mad Latiel Precious Claw', N'1', N'1', N'3', N'10', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065531', N'Gagarth Precious Claw', N'1', N'1', N'3', N'10', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211065532', N'Aurosiac Precious Claw', N'1', N'1', N'3', N'10', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066001', N'Gloves Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'9', N'10000', N'1', N'3', N'1', N'2000', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066002', N'Armored Butcher Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066003', N'Boozatron Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'12', N'10000', N'1', N'3', N'1', N'2000', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066004', N'Hammer Butcher Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'14', N'10000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066005', N'Cursed Cataphract Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'15', N'10000', N'1', N'3', N'1', N'2000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066006', N'Giant Mole Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'17', N'10000', N'1', N'3', N'1', N'2000', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066007', N'Dewey Decimator Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'19', N'10000', N'1', N'3', N'1', N'2000', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066008', N'Cataphract Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'21', N'10000', N'1', N'3', N'1', N'2000', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066009', N'Crimson Gloves Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'22', N'10000', N'1', N'3', N'1', N'2000', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066010', N'Minotauros Lord Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066011', N'Sinful Seraph Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066012', N'Massive Butcher Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'28', N'10000', N'1', N'3', N'1', N'2000', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066013', N'Haken Platina Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'26', N'10000', N'1', N'3', N'1', N'2000', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066014', N'Viper Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'31', N'10000', N'1', N'3', N'1', N'2000', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066015', N'Stone Golem Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'29', N'10000', N'1', N'3', N'1', N'2000', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066016', N'Massive Mole Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066017', N'Goliath Gorilla Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'33', N'10000', N'1', N'3', N'1', N'2000', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066018', N'Giant Rafflesia Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'38', N'10000', N'1', N'3', N'1', N'2000', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066019', N'Cyborg Gorilla Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066020', N'Sand Golem Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'36', N'10000', N'1', N'3', N'1', N'2000', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066021', N'Giant Sandworm Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'39', N'10000', N'1', N'3', N'1', N'2000', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066022', N'Spider Lady Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066023', N'Baron Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066024', N'Joker Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'44', N'10000', N'1', N'3', N'1', N'2000', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066025', N'Chimera Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'46', N'10000', N'1', N'3', N'1', N'2000', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066026', N'Conjugo Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066027', N'Dire Knight Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'49', N'10000', N'1', N'3', N'1', N'2000', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066028', N'Sparkle Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'51', N'10000', N'1', N'3', N'1', N'2000', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066029', N'Demon King Genuine Claw', N'1', N'2', N'2', N'10', N'6', N'52', N'10000', N'1', N'3', N'1', N'2000', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066030', N'Mad Latiel Genuine Claw', N'1', N'2', N'3', N'10', N'6', N'53', N'9000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066031', N'Gagarth Genuine Claw', N'1', N'2', N'3', N'10', N'6', N'54', N'9000', N'1', N'3', N'1', N'2000', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211066032', N'Aurosiac Genuine Claw', N'1', N'2', N'3', N'10', N'6', N'55', N'9000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074001', N'Speedy Revolver', N'1', N'1', N'5', N'11', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074002', N'Rapid Revolver', N'1', N'1', N'5', N'11', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074003', N'Swift Revolver', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074004', N'Bee', N'1', N'1', N'5', N'11', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074005', N'Yellowjacket', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074006', N'Wily Wasp', N'1', N'1', N'5', N'11', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074007', N'Sneaky Stinger', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074008', N'Hasty Hornet', N'1', N'1', N'5', N'11', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074009', N'Expert Ignore', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211074010', N'Sneaky Stinger', N'1', N'1', N'5', N'11', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075001', N'Gloves Revolver', N'1', N'1', N'3', N'11', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075002', N'Armored Butcher Revolver', N'1', N'1', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075003', N'Boozatron Revolver', N'1', N'1', N'3', N'11', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075004', N'Hammer Butcher Revolver', N'1', N'1', N'3', N'11', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075005', N'Cursed Cataphract Revolver', N'1', N'1', N'3', N'11', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075006', N'Giant Mole Revolver', N'1', N'1', N'3', N'11', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075007', N'Dewey Decimator Revolver', N'1', N'1', N'3', N'11', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075008', N'Cataphract Revolver', N'1', N'1', N'3', N'11', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075009', N'Crimson Gloves Revolver', N'1', N'1', N'3', N'11', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075010', N'Minotauros Lord Revolver', N'1', N'1', N'3', N'11', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075011', N'Sinful Seraph Revolver', N'1', N'1', N'3', N'11', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075012', N'Massive Butcher Revolver', N'1', N'1', N'3', N'11', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075013', N'Haken Platina Revolver', N'1', N'1', N'3', N'11', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075014', N'Viper Revolver', N'1', N'1', N'3', N'11', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075015', N'Stone Golem Revolver', N'1', N'1', N'3', N'11', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075016', N'Massive Mole Revolver', N'1', N'1', N'3', N'11', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075017', N'Goliath Gorilla Revolver', N'1', N'1', N'3', N'11', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075018', N'Giant Rafflesia Revolver', N'1', N'1', N'3', N'11', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075019', N'Cyborg Gorilla Revolver', N'1', N'1', N'3', N'11', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075020', N'Sand Golem Revolver', N'1', N'1', N'3', N'11', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075021', N'Giant Sandworm Revolver', N'1', N'1', N'3', N'11', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075022', N'Spider Lady Revolver', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075023', N'Baron Revolver', N'1', N'1', N'3', N'11', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075024', N'Joker Revolver', N'1', N'1', N'3', N'11', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075025', N'Chimera Revolver', N'1', N'1', N'3', N'11', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075026', N'Conjugo Revolver', N'1', N'1', N'3', N'11', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075027', N'Dire Knight Revolver', N'1', N'1', N'3', N'11', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075028', N'Sparkle Revolver', N'1', N'1', N'3', N'11', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075029', N'Demon King Revolver', N'1', N'1', N'3', N'11', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075030', N'Mad Latiel Replica Revolver', N'1', N'1', N'3', N'11', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075031', N'Gagarth Replica Revolver', N'1', N'1', N'3', N'11', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075032', N'Aurosiac Replica Revolver', N'1', N'1', N'3', N'11', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075501', N'Gloves Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075502', N'Armored Butcher Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075503', N'Boozatron Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075504', N'Hammer Butcher Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075505', N'Cursed Cataphract Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075506', N'Giant Mole Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075507', N'Dewey Decimator Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075508', N'Cataphract Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075509', N'Crimson Gloves Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075510', N'Minotauros Lord Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075511', N'Sinful Seraph Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075512', N'Massive Butcher Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075513', N'Haken Platina Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075514', N'Viper Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075515', N'Stone Golem Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075516', N'Massive Mole Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075517', N'Goliath Gorilla Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075518', N'Giant Rafflesia Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075519', N'Cyborg Gorilla Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075520', N'Sand Golem Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075521', N'Giant Sandworm Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075522', N'Spider Lady Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075523', N'Baron Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075524', N'Joker Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075525', N'Chimera Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075526', N'Conjugo Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075527', N'Dire Knight Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075528', N'Sparkle Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075529', N'Demon King Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075530', N'Mad Latiel Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075531', N'Gagarth Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211075532', N'Aurosiac Precious Revolver', N'1', N'1', N'3', N'11', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076001', N'Gloves Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'9', N'10000', N'1', N'3', N'1', N'2000', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076002', N'Armored Butcher Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076003', N'Boozatron Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'12', N'10000', N'1', N'3', N'1', N'2000', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076004', N'Hammer Butcher Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'14', N'10000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076005', N'Cursed Cataphract Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'15', N'10000', N'1', N'3', N'1', N'2000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076006', N'Giant Mole Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'17', N'10000', N'1', N'3', N'1', N'2000', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076007', N'Dewey Decimator Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'19', N'10000', N'1', N'3', N'1', N'2000', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076008', N'Cataphract Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'21', N'10000', N'1', N'3', N'1', N'2000', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076009', N'Crimson Gloves Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'22', N'10000', N'1', N'3', N'1', N'2000', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076010', N'Minotauros Lord Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076011', N'Sinful Seraph Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076012', N'Massive Butcher Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'28', N'10000', N'1', N'3', N'1', N'2000', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076013', N'Haken Platina Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'26', N'10000', N'1', N'3', N'1', N'2000', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076014', N'Viper Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'31', N'10000', N'1', N'3', N'1', N'2000', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076015', N'Stone Golem Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'29', N'10000', N'1', N'3', N'1', N'2000', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076016', N'Massive Mole Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076017', N'Goliath Gorilla Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'33', N'10000', N'1', N'3', N'1', N'2000', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076018', N'Giant Rafflesia Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'38', N'10000', N'1', N'3', N'1', N'2000', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076019', N'Cyborg Gorilla Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076020', N'Sand Golem Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'36', N'10000', N'1', N'3', N'1', N'2000', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076021', N'Giant Sandworm Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'39', N'10000', N'1', N'3', N'1', N'2000', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076022', N'Spider Lady Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076023', N'Baron Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076024', N'Joker Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'44', N'10000', N'1', N'3', N'1', N'2000', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076025', N'Chimera Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'46', N'10000', N'1', N'3', N'1', N'2000', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076026', N'Conjugo Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076027', N'Dire Knight Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'49', N'10000', N'1', N'3', N'1', N'2000', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076028', N'Sparkle Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'51', N'10000', N'1', N'3', N'1', N'2000', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076029', N'Demon King Genuine Revolver', N'1', N'2', N'2', N'11', N'6', N'52', N'10000', N'1', N'3', N'1', N'2000', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076030', N'Mad Latiel Genuine Revolver', N'1', N'2', N'3', N'11', N'6', N'53', N'9000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076031', N'Gagarth Genuine Revolver', N'1', N'2', N'3', N'11', N'6', N'54', N'9000', N'1', N'3', N'1', N'2000', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211076032', N'Aurosiac Genuine Revolver', N'1', N'2', N'3', N'11', N'6', N'55', N'9000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084001', N'Bold Musket', N'1', N'1', N'5', N'12', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084002', N'Quick Musket', N'1', N'1', N'5', N'12', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084003', N'Slick Musket', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084004', N'Rattler', N'1', N'1', N'5', N'12', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084005', N'Taipan', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084006', N'Krait', N'1', N'1', N'5', N'12', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084007', N'Vicious Viper', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084008', N'Black Mamba', N'1', N'1', N'5', N'12', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18330', N'3025')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084009', N'Expert Contractor', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211084010', N'Krait', N'1', N'1', N'5', N'12', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085001', N'Gloves Musket', N'1', N'1', N'3', N'12', N'5', N'9', N'9000', N'1', N'3', N'1', N'2200', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085002', N'Armored Butcher Musket', N'1', N'1', N'3', N'12', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085003', N'Boozatron Musket', N'1', N'1', N'3', N'12', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085004', N'Hammer Butcher Musket', N'1', N'1', N'3', N'12', N'5', N'14', N'9000', N'1', N'3', N'1', N'2200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085005', N'Cursed Cataphract Musket', N'1', N'1', N'3', N'12', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085006', N'Giant Mole Musket', N'1', N'1', N'3', N'12', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085007', N'Dewey Decimator Musket', N'1', N'1', N'3', N'12', N'5', N'19', N'9000', N'1', N'3', N'1', N'2200', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085008', N'Cataphract Musket', N'1', N'1', N'3', N'12', N'5', N'21', N'9000', N'1', N'3', N'1', N'2200', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085009', N'Crimson Gloves Musket', N'1', N'1', N'3', N'12', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085010', N'Minotauros Lord Musket', N'1', N'1', N'3', N'12', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085011', N'Sinful Seraph Musket', N'1', N'1', N'3', N'12', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085012', N'Massive Butcher Musket', N'1', N'1', N'3', N'12', N'5', N'28', N'9000', N'1', N'3', N'1', N'2200', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085013', N'Haken Platina Musket', N'1', N'1', N'3', N'12', N'5', N'26', N'9000', N'1', N'3', N'1', N'2200', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085014', N'Viper Musket', N'1', N'1', N'3', N'12', N'5', N'31', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085015', N'Stone Golem Musket', N'1', N'1', N'3', N'12', N'5', N'29', N'9000', N'1', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085016', N'Massive Mole Musket', N'1', N'1', N'3', N'12', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085017', N'Goliath Gorilla Musket', N'1', N'1', N'3', N'12', N'5', N'33', N'9000', N'1', N'3', N'1', N'2200', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085018', N'Giant Rafflesia Musket', N'1', N'1', N'3', N'12', N'5', N'38', N'9000', N'1', N'3', N'1', N'2200', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085019', N'Cyborg Gorilla Musket', N'1', N'1', N'3', N'12', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085020', N'Sand Golem Musket', N'1', N'1', N'3', N'12', N'5', N'36', N'9000', N'1', N'3', N'1', N'2200', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085021', N'Giant Sandworm Musket', N'1', N'1', N'3', N'12', N'5', N'39', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085022', N'Spider Lady Musket', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085023', N'Baron Musket', N'1', N'1', N'3', N'12', N'5', N'43', N'9000', N'1', N'3', N'1', N'2200', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085024', N'Joker Musket', N'1', N'1', N'3', N'12', N'5', N'44', N'9000', N'1', N'3', N'1', N'2200', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085025', N'Chimera Musket', N'1', N'1', N'3', N'12', N'5', N'46', N'9000', N'1', N'3', N'1', N'2200', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085026', N'Conjugo Musket', N'1', N'1', N'3', N'12', N'5', N'48', N'9000', N'1', N'3', N'1', N'2200', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085027', N'Dire Knight Musket', N'1', N'1', N'3', N'12', N'5', N'49', N'9000', N'1', N'3', N'1', N'2200', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085028', N'Sparkle Musket', N'1', N'1', N'3', N'12', N'5', N'51', N'9000', N'1', N'3', N'1', N'2200', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085029', N'Demon King Musket', N'1', N'1', N'3', N'12', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085030', N'Mad Latiel Replica Musket', N'1', N'1', N'3', N'12', N'5', N'53', N'9000', N'1', N'3', N'1', N'2200', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085031', N'Gagarth Replica Musket', N'1', N'1', N'3', N'12', N'5', N'54', N'9000', N'1', N'3', N'1', N'2200', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085032', N'Aurosiac Replica Musket', N'1', N'1', N'3', N'12', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085501', N'Gloves Precious Musket', N'1', N'1', N'3', N'12', N'5', N'9', N'9000', N'1', N'3', N'1', N'2200', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085502', N'Armored Butcher Precious Musket', N'1', N'1', N'3', N'12', N'5', N'10', N'9000', N'1', N'3', N'1', N'2200', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085503', N'Boozatron Precious Musket', N'1', N'1', N'3', N'12', N'5', N'12', N'9000', N'1', N'3', N'1', N'2200', N'2390', N'394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085504', N'Hammer Butcher Precious Musket', N'1', N'1', N'3', N'12', N'5', N'14', N'9000', N'1', N'3', N'1', N'2200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085505', N'Cursed Cataphract Precious Musket', N'1', N'1', N'3', N'12', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085506', N'Giant Mole Precious Musket', N'1', N'1', N'3', N'12', N'5', N'17', N'9000', N'1', N'3', N'1', N'2200', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085507', N'Dewey Decimator Precious Musket', N'1', N'1', N'3', N'12', N'5', N'19', N'9000', N'1', N'3', N'1', N'2200', N'4740', N'782')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085508', N'Cataphract Precious Musket', N'1', N'1', N'3', N'12', N'5', N'21', N'9000', N'1', N'3', N'1', N'2200', N'5540', N'914')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085509', N'Crimson Gloves Precious Musket', N'1', N'1', N'3', N'12', N'5', N'22', N'9000', N'1', N'3', N'1', N'2200', N'5970', N'985')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085510', N'Minotauros Lord Precious Musket', N'1', N'1', N'3', N'12', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085511', N'Sinful Seraph Precious Musket', N'1', N'1', N'3', N'12', N'5', N'23', N'9000', N'1', N'3', N'1', N'2200', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085512', N'Massive Butcher Precious Musket', N'1', N'1', N'3', N'12', N'5', N'28', N'9000', N'1', N'3', N'1', N'2200', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085513', N'Haken Platina Precious Musket', N'1', N'1', N'3', N'12', N'5', N'26', N'9000', N'1', N'3', N'1', N'2200', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085514', N'Viper Precious Musket', N'1', N'1', N'3', N'12', N'5', N'31', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'1719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085515', N'Stone Golem Precious Musket', N'1', N'1', N'3', N'12', N'5', N'29', N'9000', N'1', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085516', N'Massive Mole Precious Musket', N'1', N'1', N'3', N'12', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'10420', N'2794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085517', N'Goliath Gorilla Precious Musket', N'1', N'1', N'3', N'12', N'5', N'33', N'9000', N'1', N'3', N'1', N'2200', N'11560', N'1907')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085518', N'Giant Rafflesia Precious Musket', N'1', N'1', N'3', N'12', N'5', N'38', N'9000', N'1', N'3', N'1', N'2200', N'14680', N'2422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085519', N'Cyborg Gorilla Precious Musket', N'1', N'1', N'3', N'12', N'5', N'34', N'9000', N'1', N'3', N'1', N'2200', N'12160', N'2006')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085520', N'Sand Golem Precious Musket', N'1', N'1', N'3', N'12', N'5', N'36', N'9000', N'1', N'3', N'1', N'2200', N'13390', N'2209')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085521', N'Giant Sandworm Precious Musket', N'1', N'1', N'3', N'12', N'5', N'39', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085522', N'Spider Lady Precious Musket', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'17440', N'2877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085523', N'Baron Precious Musket', N'1', N'1', N'3', N'12', N'5', N'43', N'9000', N'1', N'3', N'1', N'2200', N'18160', N'2966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085524', N'Joker Precious Musket', N'1', N'1', N'3', N'12', N'5', N'44', N'9000', N'1', N'3', N'1', N'2200', N'19240', N'3022')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085525', N'Chimera Precious Musket', N'1', N'1', N'3', N'12', N'5', N'46', N'9000', N'1', N'3', N'1', N'2200', N'23590', N'4254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085526', N'Conjugo Precious Musket', N'1', N'1', N'3', N'12', N'5', N'48', N'9000', N'1', N'3', N'1', N'2200', N'22000', N'3300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085527', N'Dire Knight Precious Musket', N'1', N'1', N'3', N'12', N'5', N'49', N'9000', N'1', N'3', N'1', N'2200', N'22810', N'3422')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085528', N'Sparkle Precious Musket', N'1', N'1', N'3', N'12', N'5', N'51', N'9000', N'1', N'3', N'1', N'2200', N'24480', N'3672')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085529', N'Demon King Precious Musket', N'1', N'1', N'3', N'12', N'5', N'52', N'9000', N'1', N'3', N'1', N'2200', N'25330', N'3800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085530', N'Mad Latiel Precious Musket', N'1', N'1', N'3', N'12', N'5', N'53', N'9000', N'1', N'3', N'1', N'2200', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085531', N'Gagarth Precious Musket', N'1', N'1', N'3', N'12', N'5', N'54', N'9000', N'1', N'3', N'1', N'2200', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211085532', N'Aurosiac Precious Musket', N'1', N'1', N'3', N'12', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086001', N'Gloves Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'9', N'10000', N'1', N'3', N'1', N'2200', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086002', N'Armored Butcher Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'10', N'10000', N'1', N'3', N'1', N'2200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086003', N'Boozatron Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'12', N'10000', N'1', N'3', N'1', N'2200', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086004', N'Hammer Butcher Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'14', N'10000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086005', N'Cursed Cataphract Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'15', N'10000', N'1', N'3', N'1', N'2200', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086006', N'Giant Mole Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'17', N'10000', N'1', N'3', N'1', N'2200', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086007', N'Dewey Decimator Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'19', N'10000', N'1', N'3', N'1', N'2200', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086008', N'Cataphract Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'21', N'10000', N'1', N'3', N'1', N'2200', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086009', N'Crimson Gloves Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'22', N'10000', N'1', N'3', N'1', N'2200', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086010', N'Minotauros Lord Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'23', N'10000', N'1', N'3', N'1', N'2200', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086011', N'Sinful Seraph Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'23', N'10000', N'1', N'3', N'1', N'2200', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086012', N'Massive Butcher Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'28', N'10000', N'1', N'3', N'1', N'2200', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086013', N'Haken Platina Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'26', N'10000', N'1', N'3', N'1', N'2200', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086014', N'Viper Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'31', N'10000', N'1', N'3', N'1', N'2200', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086015', N'Stone Golem Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'29', N'10000', N'1', N'3', N'1', N'2200', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086016', N'Massive Mole Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'34', N'10000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086017', N'Goliath Gorilla Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'33', N'10000', N'1', N'3', N'1', N'2200', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086018', N'Giant Rafflesia Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'38', N'10000', N'1', N'3', N'1', N'2200', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086019', N'Cyborg Gorilla Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'34', N'10000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086020', N'Sand Golem Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'36', N'10000', N'1', N'3', N'1', N'2200', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086021', N'Giant Sandworm Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'39', N'10000', N'1', N'3', N'1', N'2200', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086022', N'Spider Lady Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086023', N'Baron Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'43', N'10000', N'1', N'3', N'1', N'2200', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086024', N'Joker Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'44', N'10000', N'1', N'3', N'1', N'2200', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086025', N'Chimera Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'46', N'10000', N'1', N'3', N'1', N'2200', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086026', N'Conjugo Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'48', N'10000', N'1', N'3', N'1', N'2200', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086027', N'Dire Knight Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'49', N'10000', N'1', N'3', N'1', N'2200', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086028', N'Sparkle Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'51', N'10000', N'1', N'3', N'1', N'2200', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086029', N'Demon King Genuine Musket', N'1', N'2', N'2', N'12', N'6', N'52', N'10000', N'1', N'3', N'1', N'2200', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086030', N'Mad Latiel Genuine Musket', N'1', N'2', N'3', N'12', N'6', N'53', N'9000', N'1', N'3', N'1', N'2200', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086031', N'Gagarth Genuine Musket', N'1', N'2', N'3', N'12', N'6', N'54', N'9000', N'1', N'3', N'1', N'2200', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211086032', N'Aurosiac Genuine Musket', N'1', N'2', N'3', N'12', N'6', N'55', N'9000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094001', N'Expert Ramnus', N'1', N'1', N'5', N'55', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'291')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094002', N'Expert Diospiros', N'1', N'1', N'5', N'55', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'519')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094003', N'Expert Illex', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094004', N'Expert Actinidia', N'1', N'1', N'5', N'55', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094005', N'Expert Betula', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094006', N'Expert Prunus', N'1', N'1', N'5', N'55', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094007', N'Expert Kapainus', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094008', N'Expert Vitis', N'1', N'1', N'5', N'55', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094009', N'Expert Ribeth', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211094010', N'Expert Strobe', N'1', N'1', N'5', N'55', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095001', N'Gloves Twin Swords', N'1', N'1', N'3', N'55', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095002', N'Armored Butcher Twin Swords', N'1', N'1', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095003', N'Boozatron Twin Swords', N'1', N'1', N'3', N'55', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095004', N'Hammer Butcher Twin Swords', N'1', N'1', N'3', N'55', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095005', N'Cursed Cataphract Twin Swords', N'1', N'1', N'3', N'55', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095006', N'Giant Mole Twin Swords', N'1', N'1', N'3', N'55', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095007', N'Dewey Decimator Twin Swords', N'1', N'1', N'3', N'55', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095008', N'Cataphract Twin Swords', N'1', N'1', N'3', N'55', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095009', N'Crimson Gloves Twin Swords', N'1', N'1', N'3', N'55', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095010', N'Minotauros Lord Twin Swords', N'1', N'1', N'3', N'55', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095011', N'Sinful Seraph Twin Swords', N'1', N'1', N'3', N'55', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095012', N'Massive Butcher Twin Swords', N'1', N'1', N'3', N'55', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095013', N'Haken Platina Twin Swords', N'1', N'1', N'3', N'55', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095014', N'Viper Twin Swords', N'1', N'1', N'3', N'55', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095015', N'Stone Golem Twin Swords', N'1', N'1', N'3', N'55', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095016', N'Massive Mole Twin Swords', N'1', N'1', N'3', N'55', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095017', N'Goliath Gorilla Twin Swords', N'1', N'1', N'3', N'55', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095018', N'Giant Rafflesia Twin Swords', N'1', N'1', N'3', N'55', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095019', N'Cyborg Gorilla Twin Swords', N'1', N'1', N'3', N'55', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095020', N'Sand Golem Twin Swords', N'1', N'1', N'3', N'55', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095021', N'Giant Sandworm Twin Swords', N'1', N'1', N'3', N'55', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095022', N'Spider Lady Twin Swords', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095023', N'Baron Twin Swords', N'1', N'1', N'3', N'55', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095024', N'Joker Twin Swords', N'1', N'1', N'3', N'55', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095025', N'Chimera Twin Swords', N'1', N'1', N'3', N'55', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095026', N'Conjugo Twin Swords', N'1', N'1', N'3', N'55', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095027', N'Dire Knight Twin Swords', N'1', N'1', N'3', N'55', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095028', N'Sparkle Twin Swords', N'1', N'1', N'3', N'55', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095029', N'Demon King Twin Swords', N'1', N'1', N'3', N'55', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095030', N'Mad Latiel Replica Twin Swords', N'1', N'1', N'3', N'55', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095031', N'Gagarth Replica Twin Swords', N'1', N'1', N'3', N'55', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095032', N'Aurosiac Replica Twin Swords', N'1', N'1', N'3', N'55', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095501', N'Gloves Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095502', N'Armored Butcher Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095503', N'Boozatron Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095504', N'Hammer Butcher Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095505', N'Cursed Cataphract Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095506', N'Giant Mole Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095507', N'Dewey Decimator Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095508', N'Cataphract Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095509', N'Crimson Gloves Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095510', N'Minotauros Lord Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095511', N'Sinful Seraph Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095512', N'Massive Butcher Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095513', N'Haken Platina Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095514', N'Viper Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095515', N'Stone Golem Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095516', N'Massive Mole Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095517', N'Goliath Gorilla Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095518', N'Giant Rafflesia Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095519', N'Cyborg Gorilla Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095520', N'Sand Golem Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095521', N'Giant Sandworm Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095522', N'Spider Lady Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095523', N'Baron Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095524', N'Joker Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095525', N'Chimera Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095526', N'Conjugo Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095527', N'Dire Knight Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095528', N'Sparkle Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095529', N'Demon King Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095530', N'Mad Latiel Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095531', N'Gagarth Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211095532', N'Aurosiac Precious Magic Sword', N'1', N'1', N'3', N'55', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096001', N'Gloves Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'9', N'10000', N'1', N'3', N'1', N'2000', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096002', N'Armored Butcher Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096003', N'Boozatron Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'12', N'10000', N'1', N'3', N'1', N'2000', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096004', N'Hammer Butcher Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'14', N'10000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096005', N'Cursed Cataphract Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'15', N'10000', N'1', N'3', N'1', N'2000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096006', N'Giant Mole Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'17', N'10000', N'1', N'3', N'1', N'2000', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096007', N'Dewey Decimator Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'19', N'10000', N'1', N'3', N'1', N'2000', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096008', N'Cataphract Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'21', N'10000', N'1', N'3', N'1', N'2000', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096009', N'Crimson Gloves Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'22', N'10000', N'1', N'3', N'1', N'2000', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096010', N'Minotauros Lord Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096011', N'Sinful Seraph Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096012', N'Massive Butcher Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'28', N'10000', N'1', N'3', N'1', N'2000', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096013', N'Haken Platina Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'26', N'10000', N'1', N'3', N'1', N'2000', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096014', N'Viper Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'31', N'10000', N'1', N'3', N'1', N'2000', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096015', N'Stone Golem Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'29', N'10000', N'1', N'3', N'1', N'2000', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096016', N'Massive Mole Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096017', N'Goliath Gorilla Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'33', N'10000', N'1', N'3', N'1', N'2000', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096018', N'Giant Rafflesia Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'38', N'10000', N'1', N'3', N'1', N'2000', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096019', N'Cyborg Gorilla Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096020', N'Sand Golem Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'36', N'10000', N'1', N'3', N'1', N'2000', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096021', N'Giant Sandworm Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'39', N'10000', N'1', N'3', N'1', N'2000', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096022', N'Spider Lady Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096023', N'Baron Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096024', N'Joker Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'44', N'10000', N'1', N'3', N'1', N'2000', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096025', N'Chimera Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'46', N'10000', N'1', N'3', N'1', N'2000', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096026', N'Conjugo Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096027', N'Dire Knight Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'49', N'10000', N'1', N'3', N'1', N'2000', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096028', N'Sparkle Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'51', N'10000', N'1', N'3', N'1', N'2000', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096029', N'Demon King Genuine Twin Sword', N'1', N'2', N'2', N'55', N'6', N'52', N'10000', N'1', N'3', N'1', N'2000', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096030', N'Mad Latiel Genuine Twin Swords', N'1', N'2', N'3', N'55', N'6', N'53', N'9000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096031', N'Gagarth Genuine Twin Swords', N'1', N'2', N'3', N'55', N'6', N'54', N'9000', N'1', N'3', N'1', N'2000', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211096032', N'Aurosiac Genuine Twin Swords', N'1', N'2', N'3', N'55', N'6', N'55', N'9000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114001', N'Expert Borealis', N'1', N'1', N'5', N'56', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'291')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114002', N'Expert Pormosus', N'1', N'1', N'5', N'56', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'519')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114003', N'Expert Seminolus', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114004', N'Expert Philotis', N'1', N'1', N'5', N'56', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114005', N'Expert Pipistrelus', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114006', N'Expert Gigas', N'1', N'1', N'5', N'56', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114007', N'Expert Megarophila', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114008', N'Expert Cinereus', N'1', N'1', N'5', N'56', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114009', N'Expert Noctivegans', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211114010', N'Expert Plekotooth', N'1', N'1', N'5', N'56', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115001', N'Gloves Glaive', N'1', N'1', N'3', N'56', N'5', N'9', N'9000', N'1', N'3', N'1', N'2500', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115002', N'Armored Butcher Glaive', N'1', N'1', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115003', N'Boozatron Glaive', N'1', N'1', N'3', N'56', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115004', N'Hammer Butcher Glaive', N'1', N'1', N'3', N'56', N'5', N'14', N'9000', N'1', N'3', N'1', N'2500', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115005', N'Cursed Cataphract Glaive', N'1', N'1', N'3', N'56', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115006', N'Giant Mole Glaive', N'1', N'1', N'3', N'56', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115007', N'Dewey Decimator Glaive', N'1', N'1', N'3', N'56', N'5', N'19', N'9000', N'1', N'3', N'1', N'2500', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115008', N'Cataphract Glaive', N'1', N'1', N'3', N'56', N'5', N'21', N'9000', N'1', N'3', N'1', N'2500', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115009', N'Crimson Gloves Glaive', N'1', N'1', N'3', N'56', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115010', N'Minotauros Lord Glaive', N'1', N'1', N'3', N'56', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115011', N'Sinful Seraph Glaive', N'1', N'1', N'3', N'56', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115012', N'Massive Butcher Glaive', N'1', N'1', N'3', N'56', N'5', N'28', N'9000', N'1', N'3', N'1', N'2500', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115013', N'Haken Platina Glaive', N'1', N'1', N'3', N'56', N'5', N'26', N'9000', N'1', N'3', N'1', N'2500', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115014', N'Viper Glaive', N'1', N'1', N'3', N'56', N'5', N'31', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115015', N'Stone Golem Glaive', N'1', N'1', N'3', N'56', N'5', N'29', N'9000', N'1', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115016', N'Massive Mole Glaive', N'1', N'1', N'3', N'56', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115017', N'Goliath Gorilla Glaive', N'1', N'1', N'3', N'56', N'5', N'33', N'9000', N'1', N'3', N'1', N'2500', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115018', N'Giant Rafflesia Glaive', N'1', N'1', N'3', N'56', N'5', N'38', N'9000', N'1', N'3', N'1', N'2500', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115019', N'Cyborg Gorilla Glaive', N'1', N'1', N'3', N'56', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115020', N'Sand Golem Glaive', N'1', N'1', N'3', N'56', N'5', N'36', N'9000', N'1', N'3', N'1', N'2500', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115021', N'Giant Sandworm Glaive', N'1', N'1', N'3', N'56', N'5', N'39', N'9000', N'1', N'3', N'1', N'2500', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115022', N'Spider Lady Glaive', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115023', N'Baron Glaive', N'1', N'1', N'3', N'56', N'5', N'43', N'9000', N'1', N'3', N'1', N'2500', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115024', N'Joker Glaive', N'1', N'1', N'3', N'56', N'5', N'44', N'9000', N'1', N'3', N'1', N'2500', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115025', N'Chimera Glaive', N'1', N'1', N'3', N'56', N'5', N'46', N'9000', N'1', N'3', N'1', N'2500', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115026', N'Conjugo Glaive', N'1', N'1', N'3', N'56', N'5', N'48', N'9000', N'1', N'3', N'1', N'2500', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115027', N'Dire Knight Glaive', N'1', N'1', N'3', N'56', N'5', N'49', N'9000', N'1', N'3', N'1', N'2500', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115028', N'Sparkle Glaive', N'1', N'1', N'3', N'56', N'5', N'51', N'9000', N'1', N'3', N'1', N'2500', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115029', N'Demon King Glaive', N'1', N'1', N'3', N'56', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115030', N'Mad Latiel Replica Glaive', N'1', N'1', N'3', N'56', N'5', N'53', N'9000', N'1', N'3', N'1', N'2500', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115031', N'Gagarth Replica Glaive', N'1', N'1', N'3', N'56', N'5', N'54', N'9000', N'1', N'3', N'1', N'2500', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115032', N'Aurosiac Replica Glaive', N'1', N'1', N'3', N'56', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115501', N'Gloves Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'9', N'9000', N'1', N'3', N'1', N'2500', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115502', N'Armored Butcher Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115503', N'Boozatron Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'12', N'9000', N'1', N'3', N'1', N'2500', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115504', N'Hammer Butcher Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'14', N'9000', N'1', N'3', N'1', N'2500', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115505', N'Cursed Cataphract Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115506', N'Giant Mole Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'17', N'9000', N'1', N'3', N'1', N'2500', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115507', N'Dewey Decimator Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'19', N'9000', N'1', N'3', N'1', N'2500', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115508', N'Cataphract Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'21', N'9000', N'1', N'3', N'1', N'2500', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115509', N'Crimson Gloves Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'22', N'9000', N'1', N'3', N'1', N'2500', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115510', N'Minotauros Lord Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115511', N'Sinful Seraph Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'23', N'9000', N'1', N'3', N'1', N'2500', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115512', N'Massive Butcher Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'28', N'9000', N'1', N'3', N'1', N'2500', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115513', N'Haken Platina Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'26', N'9000', N'1', N'3', N'1', N'2500', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115514', N'Viper Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'31', N'9000', N'1', N'3', N'1', N'2500', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115515', N'Stone Golem Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'29', N'9000', N'1', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115516', N'Massive Mole Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115517', N'Goliath Gorilla Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'33', N'9000', N'1', N'3', N'1', N'2500', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115518', N'Giant Rafflesia Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'38', N'9000', N'1', N'3', N'1', N'2500', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115519', N'Cyborg Gorilla Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'34', N'9000', N'1', N'3', N'1', N'2500', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115520', N'Sand Golem Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'36', N'9000', N'1', N'3', N'1', N'2500', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115521', N'Giant Sandworm Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'39', N'9000', N'1', N'3', N'1', N'2500', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115522', N'Spider Lady Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115523', N'Baron Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'43', N'9000', N'1', N'3', N'1', N'2500', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115524', N'Joker Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'44', N'9000', N'1', N'3', N'1', N'2500', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115525', N'Chimera Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'46', N'9000', N'1', N'3', N'1', N'2500', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115526', N'Conjugo Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'48', N'9000', N'1', N'3', N'1', N'2500', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115527', N'Dire Knight Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'49', N'9000', N'1', N'3', N'1', N'2500', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115528', N'Sparkle Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'51', N'9000', N'1', N'3', N'1', N'2500', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115529', N'Demon King Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'52', N'9000', N'1', N'3', N'1', N'2500', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115530', N'Mad Latiel Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'53', N'9000', N'1', N'3', N'1', N'2500', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115531', N'Gagarth Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'54', N'9000', N'1', N'3', N'1', N'2500', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211115532', N'Aurosiac Precious Glaive', N'1', N'1', N'3', N'56', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116001', N'Gloves Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'9', N'10000', N'1', N'3', N'1', N'2500', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116002', N'Armored Butcher Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'10', N'10000', N'1', N'3', N'1', N'2500', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116003', N'Boozatron Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'12', N'10000', N'1', N'3', N'1', N'2500', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116004', N'Hammer Butcher Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'14', N'10000', N'1', N'3', N'1', N'2500', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116005', N'Cursed Cataphract Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'15', N'10000', N'1', N'3', N'1', N'2500', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116006', N'Giant Mole Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'17', N'10000', N'1', N'3', N'1', N'2500', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116007', N'Dewey Decimator Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'19', N'10000', N'1', N'3', N'1', N'2500', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116008', N'Cataphract Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'21', N'10000', N'1', N'3', N'1', N'2500', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116009', N'Crimson Gloves Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'22', N'10000', N'1', N'3', N'1', N'2500', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116010', N'Minotauros Lord Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'23', N'10000', N'1', N'3', N'1', N'2500', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116011', N'Sinful Seraph Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'23', N'10000', N'1', N'3', N'1', N'2500', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116012', N'Massive Butcher Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'28', N'10000', N'1', N'3', N'1', N'2500', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116013', N'Haken Platina Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'26', N'10000', N'1', N'3', N'1', N'2500', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116014', N'Viper Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'31', N'10000', N'1', N'3', N'1', N'2500', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116015', N'Stone Golem Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'29', N'10000', N'1', N'3', N'1', N'2500', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116016', N'Massive Mole Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'34', N'10000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116017', N'Goliath Gorilla Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'33', N'10000', N'1', N'3', N'1', N'2500', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116018', N'Giant Rafflesia Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'38', N'10000', N'1', N'3', N'1', N'2500', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116019', N'Cyborg Gorilla Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'34', N'10000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116020', N'Sand Golem Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'36', N'10000', N'1', N'3', N'1', N'2500', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116021', N'Giant Sandworm Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'39', N'10000', N'1', N'3', N'1', N'2500', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116022', N'Spider Lady Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116023', N'Baron Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'43', N'10000', N'1', N'3', N'1', N'2500', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116024', N'Joker Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'44', N'10000', N'1', N'3', N'1', N'2500', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116025', N'Chimera Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'46', N'10000', N'1', N'3', N'1', N'2500', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116026', N'Conjugo Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'48', N'10000', N'1', N'3', N'1', N'2500', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116027', N'Dire Knight Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'49', N'10000', N'1', N'3', N'1', N'2500', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116028', N'Sparkle Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'51', N'10000', N'1', N'3', N'1', N'2500', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116029', N'Demon King Genuine Glaive', N'1', N'2', N'2', N'56', N'6', N'52', N'10000', N'1', N'3', N'1', N'2500', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116030', N'Mad Latiel Genuine Glaive', N'1', N'2', N'3', N'56', N'6', N'53', N'9000', N'1', N'3', N'1', N'2500', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116031', N'Gagarth Genuine Glaive', N'1', N'2', N'3', N'56', N'6', N'54', N'9000', N'1', N'3', N'1', N'2500', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211116032', N'Aurosiac Genuine Glaive', N'1', N'2', N'3', N'56', N'6', N'55', N'9000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134001', N'Expert Aureus', N'1', N'1', N'5', N'57', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'291')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134002', N'Expert Aljerensis', N'1', N'1', N'5', N'57', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'519')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134003', N'Expert Antus', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134004', N'Expert Vea', N'1', N'1', N'5', N'57', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134005', N'Expert Crusemani', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134006', N'Expert Indicus', N'1', N'1', N'5', N'57', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134007', N'Expert Rupaster', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134008', N'Expert Naria', N'1', N'1', N'5', N'57', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134009', N'Expert Liparius', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211134010', N'Expert Diceros', N'1', N'1', N'5', N'57', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135001', N'Gloves Demon Hands', N'1', N'1', N'3', N'57', N'5', N'9', N'9000', N'1', N'3', N'1', N'2300', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135002', N'Armored Butcher Demon Hands', N'1', N'1', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135003', N'Boozatron Demon Hands', N'1', N'1', N'3', N'57', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135004', N'Hammer Butcher Demon Hands', N'1', N'1', N'3', N'57', N'5', N'14', N'9000', N'1', N'3', N'1', N'2300', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135005', N'Cursed Cataphract Demon Hands', N'1', N'1', N'3', N'57', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135006', N'Giant Mole Demon Hands', N'1', N'1', N'3', N'57', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135007', N'Dewey Decimator Demon Hands', N'1', N'1', N'3', N'57', N'5', N'19', N'9000', N'1', N'3', N'1', N'2300', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135008', N'Cataphract Demon Hands', N'1', N'1', N'3', N'57', N'5', N'21', N'9000', N'1', N'3', N'1', N'2300', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135009', N'Crimson Gloves Demon Hands', N'1', N'1', N'3', N'57', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135010', N'Minotauros Lord Demon Hands', N'1', N'1', N'3', N'57', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135011', N'Sinful Seraph Demon Hands', N'1', N'1', N'3', N'57', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135012', N'Massive Butcher Demon Hands', N'1', N'1', N'3', N'57', N'5', N'28', N'9000', N'1', N'3', N'1', N'2300', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135013', N'Haken Platina Demon Hands', N'1', N'1', N'3', N'57', N'5', N'26', N'9000', N'1', N'3', N'1', N'2300', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135014', N'Viper Demon Hands', N'1', N'1', N'3', N'57', N'5', N'31', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135015', N'Stone Golem Demon Hands', N'1', N'1', N'3', N'57', N'5', N'29', N'9000', N'1', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135016', N'Massive Mole Demon Hands', N'1', N'1', N'3', N'57', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135017', N'Goliath Gorilla Demon Hands', N'1', N'1', N'3', N'57', N'5', N'33', N'9000', N'1', N'3', N'1', N'2300', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135018', N'Giant Rafflesia Demon Hands', N'1', N'1', N'3', N'57', N'5', N'38', N'9000', N'1', N'3', N'1', N'2300', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135019', N'Cyborg Gorilla Demon Hands', N'1', N'1', N'3', N'57', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135020', N'Sand Golem Demon Hands', N'1', N'1', N'3', N'57', N'5', N'36', N'9000', N'1', N'3', N'1', N'2300', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135021', N'Giant Sandworm Demon Hands', N'1', N'1', N'3', N'57', N'5', N'39', N'9000', N'1', N'3', N'1', N'2300', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135022', N'Spider Lady Demon Hands', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135023', N'Baron Demon Hands', N'1', N'1', N'3', N'57', N'5', N'43', N'9000', N'1', N'3', N'1', N'2300', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135024', N'Joker Demon Hands', N'1', N'1', N'3', N'57', N'5', N'44', N'9000', N'1', N'3', N'1', N'2300', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135025', N'Chimera Demon Hands', N'1', N'1', N'3', N'57', N'5', N'46', N'9000', N'1', N'3', N'1', N'2300', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135026', N'Conjugo Replica Demon Hands', N'1', N'1', N'3', N'57', N'5', N'48', N'9000', N'1', N'3', N'1', N'2300', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135027', N'Dire Knight Replica Demon Hands', N'1', N'1', N'3', N'57', N'5', N'49', N'9000', N'1', N'3', N'1', N'2300', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135028', N'Sparkle Replica Demon Hands', N'1', N'1', N'3', N'57', N'5', N'51', N'9000', N'1', N'3', N'1', N'2300', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135029', N'Demon King Replica Demon Hands', N'1', N'1', N'3', N'57', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135030', N'Mad Latiel Replica Heavy Gauntlets', N'1', N'1', N'3', N'57', N'5', N'53', N'9000', N'1', N'3', N'1', N'2300', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135031', N'Gagarth Replica Heavy Gauntlets', N'1', N'1', N'3', N'57', N'5', N'54', N'9000', N'1', N'3', N'1', N'2300', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135032', N'Aurosiac Replica Heavy Gauntlets', N'1', N'1', N'3', N'57', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135501', N'Gloves Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'9', N'9000', N'1', N'3', N'1', N'2300', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135502', N'Armored Butcher Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135503', N'Boozatron Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'12', N'9000', N'1', N'3', N'1', N'2300', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135504', N'Hammer Butcher Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'14', N'9000', N'1', N'3', N'1', N'2300', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135505', N'Cursed Cataphract Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135506', N'Giant Mole Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'17', N'9000', N'1', N'3', N'1', N'2300', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135507', N'Dewey Decimator Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'19', N'9000', N'1', N'3', N'1', N'2300', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135508', N'Cataphract Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'21', N'9000', N'1', N'3', N'1', N'2300', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135509', N'Crimson Gloves Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'22', N'9000', N'1', N'3', N'1', N'2300', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135510', N'Minotauros Lord Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135511', N'Sinful Seraph Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'23', N'9000', N'1', N'3', N'1', N'2300', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135512', N'Massive Butcher Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'28', N'9000', N'1', N'3', N'1', N'2300', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135513', N'Haken Platina Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'26', N'9000', N'1', N'3', N'1', N'2300', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135514', N'Viper Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'31', N'9000', N'1', N'3', N'1', N'2300', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135515', N'Stone Golem Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'29', N'9000', N'1', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135516', N'Massive Mole Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135517', N'Goliath Gorilla Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'33', N'9000', N'1', N'3', N'1', N'2300', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135518', N'Giant Rafflesia Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'38', N'9000', N'1', N'3', N'1', N'2300', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135519', N'Cyborg Gorilla Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'34', N'9000', N'1', N'3', N'1', N'2300', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135520', N'Sand Golem Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'36', N'9000', N'1', N'3', N'1', N'2300', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135521', N'Giant Sandworm Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'39', N'9000', N'1', N'3', N'1', N'2300', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135522', N'Spider Lady Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135523', N'Baron Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'43', N'9000', N'1', N'3', N'1', N'2300', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135524', N'Joker Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'44', N'9000', N'1', N'3', N'1', N'2300', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135525', N'Chimera Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'46', N'9000', N'1', N'3', N'1', N'2300', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135526', N'Conjugo Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'48', N'9000', N'1', N'3', N'1', N'2300', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135527', N'Dire Knight Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'49', N'9000', N'1', N'3', N'1', N'2300', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135528', N'Sparkle Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'51', N'9000', N'1', N'3', N'1', N'2300', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135529', N'Demon King Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'52', N'9000', N'1', N'3', N'1', N'2300', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135530', N'Mad Latiel Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'53', N'9000', N'1', N'3', N'1', N'2300', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135531', N'Gagarth Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'54', N'9000', N'1', N'3', N'1', N'2300', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211135532', N'Aurosiac Precious Demon Hands', N'1', N'1', N'3', N'57', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136001', N'Gloves Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'9', N'10000', N'1', N'3', N'1', N'2300', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136002', N'Armored Butcher Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'10', N'10000', N'1', N'3', N'1', N'2300', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136003', N'Boozatron Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'12', N'10000', N'1', N'3', N'1', N'2300', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136004', N'Hammer Butcher Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'14', N'10000', N'1', N'3', N'1', N'2300', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136005', N'Cursed Cataphract Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'15', N'10000', N'1', N'3', N'1', N'2300', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136006', N'Giant Mole Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'17', N'10000', N'1', N'3', N'1', N'2300', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136007', N'Dewey Decimator Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'19', N'10000', N'1', N'3', N'1', N'2300', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136008', N'Cataphract Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'21', N'10000', N'1', N'3', N'1', N'2300', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136009', N'Crimson Gloves Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'22', N'10000', N'1', N'3', N'1', N'2300', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136010', N'Minotauros Lord Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'23', N'10000', N'1', N'3', N'1', N'2300', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136011', N'Sinful Seraph Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'23', N'10000', N'1', N'3', N'1', N'2300', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136012', N'Massive Butcher Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'28', N'10000', N'1', N'3', N'1', N'2300', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136013', N'Haken Platina Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'26', N'10000', N'1', N'3', N'1', N'2300', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136014', N'Viper Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'31', N'10000', N'1', N'3', N'1', N'2300', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136015', N'Stone Golem Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'29', N'10000', N'1', N'3', N'1', N'2300', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136016', N'Massive Mole Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'34', N'10000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136017', N'Goliath Gorilla Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'33', N'10000', N'1', N'3', N'1', N'2300', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136018', N'Giant Rafflesia Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'38', N'10000', N'1', N'3', N'1', N'2300', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136019', N'Cyborg Gorilla Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'34', N'10000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136020', N'Sand Golem Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'36', N'10000', N'1', N'3', N'1', N'2300', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136021', N'Giant Sandworm Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'39', N'10000', N'1', N'3', N'1', N'2300', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136022', N'Spider Lady Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136023', N'Baron Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'43', N'10000', N'1', N'3', N'1', N'2300', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136024', N'Joker Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'44', N'10000', N'1', N'3', N'1', N'2300', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136025', N'Chimera Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'46', N'10000', N'1', N'3', N'1', N'2300', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136026', N'Conjugo Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'48', N'10000', N'1', N'3', N'1', N'2300', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136027', N'Dire Knight Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'49', N'10000', N'1', N'3', N'1', N'2300', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136028', N'Sparkle Genuine Heavy Gauntlet', N'1', N'2', N'2', N'57', N'6', N'51', N'10000', N'1', N'3', N'1', N'2300', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136029', N'Demon King Genuine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'52', N'10000', N'1', N'3', N'1', N'2300', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136030', N'Mad Latiel Genuine Heavy Gauntlets', N'1', N'2', N'3', N'57', N'6', N'53', N'9000', N'1', N'3', N'1', N'2300', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136031', N'Gagarth Genuine Heavy Gauntlets', N'1', N'2', N'3', N'57', N'6', N'54', N'9000', N'1', N'3', N'1', N'2300', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211136032', N'Aurosiac Genuine Heavy Gauntlets', N'1', N'2', N'3', N'57', N'6', N'55', N'9000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154001', N'Expert Terapene', N'1', N'1', N'5', N'58', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'291')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154002', N'Expert Malaclemis', N'1', N'1', N'5', N'58', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'519')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154003', N'Expert Lactopris', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'806')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154004', N'Expert Kelis', N'1', N'1', N'5', N'58', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154005', N'Expert Hydromedusa', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154006', N'Expert Xiokelon', N'1', N'1', N'5', N'58', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154007', N'Expert Midas', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154008', N'Expert Kareta', N'1', N'1', N'5', N'58', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154009', N'Expert Selgata', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211154010', N'Expert Musk Bag', N'1', N'1', N'5', N'58', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155001', N'Gloves Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155002', N'Armored Butcher Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155003', N'Boozatron Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155004', N'Hammer Butcher Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155005', N'Cursed Cataphract Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155006', N'Giant Mole Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155007', N'Dewey Decimator Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155008', N'Cataphract Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155009', N'Crimson Gloves Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155010', N'Minotauros Lord Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155011', N'Sinful Seraph Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155012', N'Massive Butcher Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155013', N'Haken Platina Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155014', N'Viper Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155015', N'Stone Golem Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155016', N'Massive Mole Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155017', N'Goliath Gorilla Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155018', N'Giant Rafflesia Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155019', N'Cyborg Gorilla Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155020', N'Sand Golem Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155021', N'Giant Sandworm Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155022', N'Spider Lady Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155023', N'Baron Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155024', N'Joker Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155025', N'Chimera Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155026', N'Conjugo Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155027', N'Dire Knight Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155028', N'Sparkle Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155029', N'Demon King Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155030', N'Mad Latiel Replica Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155031', N'Gagarth Replica Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155032', N'Aurosiac Replica Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155501', N'Gloves Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'9', N'9000', N'1', N'3', N'1', N'2000', N'1600', N'264')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155502', N'Armored Butcher Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155503', N'Boozatron Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'12', N'9000', N'1', N'3', N'1', N'2000', N'2390', N'395')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155504', N'Hammer Butcher Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'14', N'9000', N'1', N'3', N'1', N'2000', N'2990', N'494')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155505', N'Cursed Cataphract Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155506', N'Giant Mole Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'17', N'9000', N'1', N'3', N'1', N'2000', N'4000', N'660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155507', N'Dewey Decimator Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'19', N'9000', N'1', N'3', N'1', N'2000', N'4740', N'783')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155508', N'Cataphract Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'21', N'9000', N'1', N'3', N'1', N'2000', N'5540', N'915')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155509', N'Crimson Gloves Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'22', N'9000', N'1', N'3', N'1', N'2000', N'5970', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155510', N'Minotauros Lord Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155511', N'Sinful Seraph Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'23', N'9000', N'1', N'3', N'1', N'2000', N'6400', N'1056')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155512', N'Massive Butcher Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'28', N'9000', N'1', N'3', N'1', N'2000', N'8800', N'1452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155513', N'Haken Platina Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'26', N'9000', N'1', N'3', N'1', N'2000', N'7800', N'1287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155514', N'Viper Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'31', N'9000', N'1', N'3', N'1', N'2000', N'10420', N'1720')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155515', N'Stone Golem Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'29', N'9000', N'1', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155516', N'Massive Mole Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155517', N'Goliath Gorilla Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'33', N'9000', N'1', N'3', N'1', N'2000', N'11560', N'1908')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155518', N'Giant Rafflesia Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'38', N'9000', N'1', N'3', N'1', N'2000', N'14680', N'2423')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155519', N'Cyborg Gorilla Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'34', N'9000', N'1', N'3', N'1', N'2000', N'12160', N'2007')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155520', N'Sand Golem Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'36', N'9000', N'1', N'3', N'1', N'2000', N'13390', N'2210')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155521', N'Giant Sandworm Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'39', N'9000', N'1', N'3', N'1', N'2000', N'15350', N'2533')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155522', N'Spider Lady Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155523', N'Baron Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'43', N'9000', N'1', N'3', N'1', N'2000', N'18160', N'2997')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155524', N'Joker Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'44', N'9000', N'1', N'3', N'1', N'2000', N'18900', N'3119')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155525', N'Chimera Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'46', N'9000', N'1', N'3', N'1', N'2000', N'20420', N'3370')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155526', N'Conjugo Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'48', N'9000', N'1', N'3', N'1', N'2000', N'22000', N'3630')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155527', N'Dire Knight Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'49', N'9000', N'1', N'3', N'1', N'2000', N'22810', N'3764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155528', N'Sparkle Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'51', N'9000', N'1', N'3', N'1', N'2000', N'24480', N'4040')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155529', N'Demon King Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'52', N'9000', N'1', N'3', N'1', N'2000', N'25330', N'4180')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155530', N'Mad Latiel Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'53', N'9000', N'1', N'3', N'1', N'2000', N'26200', N'4323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155531', N'Gagarth Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'54', N'9000', N'1', N'3', N'1', N'2000', N'27090', N'4470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211155532', N'Aurosiac Precious Weapon Bag', N'1', N'1', N'3', N'58', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156001', N'Gloves Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'9', N'10000', N'1', N'3', N'1', N'2000', N'1680', N'277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156002', N'Armored Butcher Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'10', N'10000', N'1', N'3', N'1', N'2000', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156003', N'Boozatron Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'12', N'10000', N'1', N'3', N'1', N'2000', N'2510', N'414')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156004', N'Hammer Butcher Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'14', N'10000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156005', N'Cursed Cataphract Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'15', N'10000', N'1', N'3', N'1', N'2000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156006', N'Giant Mole Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'17', N'10000', N'1', N'3', N'1', N'2000', N'4200', N'693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156007', N'Dewey Decimator Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'19', N'10000', N'1', N'3', N'1', N'2000', N'4980', N'822')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156008', N'Cataphract Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'21', N'10000', N'1', N'3', N'1', N'2000', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156009', N'Crimson Gloves Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'22', N'10000', N'1', N'3', N'1', N'2000', N'6270', N'1035')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156010', N'Minotauros Lord Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156011', N'Sinful Seraph Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'23', N'10000', N'1', N'3', N'1', N'2000', N'6720', N'1109')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156012', N'Massive Butcher Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'28', N'10000', N'1', N'3', N'1', N'2000', N'9240', N'1525')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156013', N'Haken Platina Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'26', N'10000', N'1', N'3', N'1', N'2000', N'8190', N'1351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156014', N'Viper Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'31', N'10000', N'1', N'3', N'1', N'2000', N'10940', N'1805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156015', N'Stone Golem Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'29', N'10000', N'1', N'3', N'1', N'2000', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156016', N'Massive Mole Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156017', N'Goliath Gorilla Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'33', N'10000', N'1', N'3', N'1', N'2000', N'12140', N'2003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156018', N'Giant Rafflesia Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'38', N'10000', N'1', N'3', N'1', N'2000', N'15410', N'2543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156019', N'Cyborg Gorilla Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'34', N'10000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156020', N'Sand Golem Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'36', N'10000', N'1', N'3', N'1', N'2000', N'14060', N'2320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156021', N'Giant Sandworm Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'39', N'10000', N'1', N'3', N'1', N'2000', N'16120', N'2660')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156022', N'Spider Lady Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156023', N'Baron Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'43', N'10000', N'1', N'3', N'1', N'2000', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156024', N'Joker Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'44', N'10000', N'1', N'3', N'1', N'2000', N'19850', N'3275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156025', N'Chimera Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'46', N'10000', N'1', N'3', N'1', N'2000', N'21440', N'3538')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156026', N'Conjugo Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'48', N'10000', N'1', N'3', N'1', N'2000', N'23100', N'3812')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156027', N'Dire Knight Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'49', N'10000', N'1', N'3', N'1', N'2000', N'23950', N'3952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156028', N'Sparkle Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'51', N'10000', N'1', N'3', N'1', N'2000', N'25700', N'4241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156029', N'Demon King Genuine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'52', N'10000', N'1', N'3', N'1', N'2000', N'26600', N'4389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156030', N'Mad Latiel Genuine Weapon Bag', N'1', N'2', N'3', N'58', N'6', N'53', N'9000', N'1', N'3', N'1', N'2000', N'27510', N'4539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156031', N'Gagarth Genuine Weapon Bag', N'1', N'2', N'3', N'58', N'6', N'54', N'9000', N'1', N'3', N'1', N'2000', N'28440', N'4693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'211156032', N'Aurosiac Genuine Weapon Bag', N'1', N'2', N'3', N'58', N'6', N'55', N'9000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014001', N'Ravager Robe', N'1', N'1', N'5', N'1', N'4', N'10', N'6000', N'1', N'3', N'2', N'1400', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014002', N'Mal Robe', N'1', N'1', N'5', N'1', N'4', N'15', N'6000', N'1', N'3', N'2', N'1400', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014003', N'Glowing Robe', N'1', N'1', N'5', N'1', N'4', N'20', N'6000', N'1', N'3', N'2', N'1400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014004', N'Glitter Robe', N'1', N'1', N'5', N'1', N'4', N'25', N'6000', N'1', N'3', N'2', N'1400', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014005', N'Avid Robe', N'1', N'1', N'5', N'1', N'4', N'30', N'6000', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014006', N'Radiant Robe', N'1', N'1', N'5', N'1', N'4', N'35', N'6000', N'1', N'3', N'2', N'1400', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014007', N'Brilliant Robe', N'1', N'1', N'5', N'1', N'4', N'40', N'6000', N'1', N'3', N'2', N'1400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014008', N'Sparkle Robe', N'1', N'1', N'5', N'1', N'4', N'45', N'6000', N'1', N'3', N'2', N'1400', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014009', N'Beautiful Robe', N'1', N'1', N'5', N'1', N'4', N'50', N'6000', N'1', N'3', N'2', N'1400', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212014010', N'Expert Dusk Robe', N'1', N'1', N'5', N'1', N'4', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015001', N'Gloves Robe', N'1', N'1', N'3', N'1', N'5', N'9', N'6500', N'1', N'3', N'2', N'1400', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015002', N'Armored Butcher Robe', N'1', N'1', N'3', N'1', N'5', N'10', N'6500', N'1', N'3', N'2', N'1400', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015003', N'Boozatron Robe', N'1', N'1', N'3', N'1', N'5', N'12', N'6500', N'1', N'3', N'2', N'1400', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015004', N'Hammer Butcher Robe', N'1', N'1', N'3', N'1', N'5', N'14', N'6500', N'1', N'3', N'2', N'1400', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015005', N'Cursed Cataphract Robe', N'1', N'1', N'3', N'1', N'5', N'15', N'6500', N'1', N'3', N'2', N'1400', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015006', N'Giant Mole Robe', N'1', N'1', N'3', N'1', N'5', N'17', N'6500', N'1', N'3', N'2', N'1400', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015007', N'Dewey Decimator Robe', N'1', N'1', N'3', N'1', N'5', N'19', N'6500', N'1', N'3', N'2', N'1400', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015008', N'Cataphract Robe', N'1', N'1', N'3', N'1', N'5', N'21', N'6500', N'1', N'3', N'2', N'1400', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015009', N'Crimson Gloves Robe', N'1', N'1', N'3', N'1', N'5', N'22', N'6500', N'1', N'3', N'2', N'1400', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015010', N'Minotauros Lord Robe', N'1', N'1', N'3', N'1', N'5', N'23', N'6500', N'1', N'3', N'2', N'1400', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015011', N'Sinful Seraph Robe', N'1', N'1', N'3', N'1', N'5', N'23', N'6500', N'1', N'3', N'2', N'1400', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015012', N'Massive Butcher Robe', N'1', N'1', N'3', N'1', N'5', N'28', N'6500', N'1', N'3', N'2', N'1400', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015013', N'Haken Platina Robe', N'1', N'1', N'3', N'1', N'5', N'26', N'6500', N'1', N'3', N'2', N'1400', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015014', N'Viper Robe', N'1', N'1', N'3', N'1', N'5', N'31', N'6500', N'1', N'3', N'2', N'1400', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015015', N'Stone Golem Robe', N'1', N'1', N'3', N'1', N'5', N'29', N'6500', N'1', N'3', N'2', N'1400', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015016', N'Massive Mole Robe', N'1', N'1', N'3', N'1', N'5', N'34', N'6500', N'1', N'3', N'2', N'1400', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015017', N'Goliath Gorilla Robe', N'1', N'1', N'3', N'1', N'5', N'33', N'6500', N'1', N'3', N'2', N'1400', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015018', N'Giant Rafflesia Robe', N'1', N'1', N'3', N'1', N'5', N'38', N'6500', N'1', N'3', N'2', N'1400', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015019', N'Cyborg Gorilla Robe', N'1', N'1', N'3', N'1', N'5', N'34', N'6500', N'1', N'3', N'2', N'1400', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015020', N'Sand Golem Robe', N'1', N'1', N'3', N'1', N'5', N'36', N'6500', N'1', N'3', N'2', N'1400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015021', N'Giant Sandworm Robe', N'1', N'1', N'3', N'1', N'5', N'39', N'6500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015022', N'Spider Lady Robe', N'1', N'1', N'3', N'1', N'5', N'40', N'6500', N'1', N'3', N'2', N'1400', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015023', N'Baron Robe', N'1', N'1', N'3', N'1', N'5', N'43', N'6500', N'1', N'3', N'2', N'1400', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015024', N'Joker Robe', N'1', N'1', N'3', N'1', N'5', N'44', N'6500', N'1', N'3', N'2', N'1400', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015025', N'Chimera Robe', N'1', N'1', N'3', N'1', N'5', N'46', N'6500', N'1', N'3', N'2', N'1400', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015026', N'Conjugo Robe', N'1', N'1', N'3', N'1', N'5', N'48', N'6500', N'1', N'3', N'2', N'1400', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015027', N'Dire Knight Robe', N'1', N'1', N'3', N'1', N'5', N'49', N'6500', N'1', N'3', N'2', N'1400', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015028', N'Sparkle Robe', N'1', N'1', N'3', N'1', N'5', N'51', N'6500', N'1', N'3', N'2', N'1400', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015029', N'Demon King Robe', N'1', N'1', N'3', N'1', N'5', N'52', N'6500', N'1', N'3', N'2', N'1400', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015030', N'Mad Latiel Replica Robe', N'1', N'1', N'3', N'1', N'5', N'53', N'6500', N'1', N'3', N'2', N'1400', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015031', N'Gagarth Replica Robe', N'1', N'1', N'3', N'1', N'5', N'54', N'6500', N'1', N'3', N'2', N'1400', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015032', N'Aurosiac Replica Robe', N'1', N'1', N'3', N'1', N'5', N'55', N'6500', N'1', N'3', N'2', N'1400', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015501', N'Gloves Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'9', N'6500', N'1', N'3', N'2', N'1400', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015502', N'Armored Butcher Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'10', N'6500', N'1', N'3', N'2', N'1400', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015503', N'Boozatron Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'12', N'6500', N'1', N'3', N'2', N'1400', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015504', N'Hammer Butcher Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'14', N'6500', N'1', N'3', N'2', N'1400', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015505', N'Cursed Cataphract Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'15', N'6500', N'1', N'3', N'2', N'1400', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015506', N'Giant Mole Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'17', N'6500', N'1', N'3', N'2', N'1400', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015507', N'Dewey Decimator Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'19', N'6500', N'1', N'3', N'2', N'1400', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015508', N'Cataphract Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'21', N'6500', N'1', N'3', N'2', N'1400', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015509', N'Crimson Gloves Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'22', N'6500', N'1', N'3', N'2', N'1400', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015510', N'Minotauros Lord Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'23', N'6500', N'1', N'3', N'2', N'1400', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015511', N'Sinful Seraph Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'23', N'6500', N'1', N'3', N'2', N'1400', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015512', N'Massive Butcher Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'28', N'6500', N'1', N'3', N'2', N'1400', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015513', N'Haken Platina Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'26', N'6500', N'1', N'3', N'2', N'1400', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015514', N'Viper Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'31', N'6500', N'1', N'3', N'2', N'1400', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015515', N'Stone Golem Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'29', N'6500', N'1', N'3', N'2', N'1400', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015516', N'Massive Mole Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'34', N'6500', N'1', N'3', N'2', N'1400', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015517', N'Goliath Gorilla Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'33', N'6500', N'1', N'3', N'2', N'1400', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015518', N'Giant Rafflesia Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'38', N'6500', N'1', N'3', N'2', N'1400', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015519', N'Cyborg Gorilla Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'34', N'6500', N'1', N'3', N'2', N'1400', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015520', N'Sand Golem Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'36', N'6500', N'1', N'3', N'2', N'1400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015521', N'Giant Sandworm Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'39', N'6500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015522', N'Spider Lady Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'40', N'6500', N'1', N'3', N'2', N'1400', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015523', N'Baron Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'43', N'6500', N'1', N'3', N'2', N'1400', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015524', N'Joker Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'44', N'6500', N'1', N'3', N'2', N'1400', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015525', N'Chimera Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'46', N'6500', N'1', N'3', N'2', N'1400', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015526', N'Conjugo Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'48', N'6500', N'1', N'3', N'2', N'1400', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015527', N'Dire Knight Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'49', N'6500', N'1', N'3', N'2', N'1400', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015528', N'Sparkle Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'51', N'6500', N'1', N'3', N'2', N'1400', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015529', N'Demon King Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'52', N'6500', N'1', N'3', N'2', N'1400', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015530', N'Mad Latiel Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'53', N'6500', N'1', N'3', N'2', N'1400', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015531', N'Gagarth Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'54', N'6500', N'1', N'3', N'2', N'1400', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212015532', N'Aurosiac Delicate Robe', N'1', N'1', N'3', N'1', N'5', N'55', N'6500', N'1', N'3', N'2', N'1400', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024001', N'Chamois Armor', N'1', N'1', N'5', N'2', N'4', N'10', N'6000', N'1', N'3', N'2', N'1900', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024002', N'Vachetta Armor', N'1', N'1', N'5', N'2', N'4', N'15', N'6000', N'1', N'3', N'2', N'1900', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024003', N'Nappa Armor', N'1', N'1', N'5', N'2', N'4', N'20', N'6000', N'1', N'3', N'2', N'1900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024004', N'Cordovan Armor', N'1', N'1', N'5', N'2', N'4', N'25', N'6000', N'1', N'3', N'2', N'1900', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024005', N'Aniline Armor', N'1', N'1', N'5', N'2', N'4', N'30', N'6000', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024006', N'Adarga Armor', N'1', N'1', N'5', N'2', N'4', N'35', N'6000', N'1', N'3', N'2', N'1900', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024007', N'Bonded Armor', N'1', N'1', N'5', N'2', N'4', N'40', N'6000', N'1', N'3', N'2', N'1900', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024008', N'Anointed Armor', N'1', N'1', N'5', N'2', N'4', N'45', N'6000', N'1', N'3', N'2', N'1900', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024009', N'Forsaken Armor', N'1', N'1', N'5', N'2', N'4', N'50', N'6000', N'1', N'3', N'2', N'1900', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212024010', N'Expert Levices Leather Armor', N'1', N'1', N'5', N'2', N'4', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025001', N'Gloves Leather Mail', N'1', N'1', N'3', N'2', N'5', N'9', N'6500', N'1', N'3', N'2', N'1900', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025002', N'Armored Butcher Leather Mail', N'1', N'1', N'3', N'2', N'5', N'10', N'6500', N'1', N'3', N'2', N'1900', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025003', N'Boozatron Leather Mail', N'1', N'1', N'3', N'2', N'5', N'12', N'6500', N'1', N'3', N'2', N'1900', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025004', N'Hammer Butcher Leather Mail', N'1', N'1', N'3', N'2', N'5', N'14', N'6500', N'1', N'3', N'2', N'1900', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025005', N'Cursed Cataphract Leather Mail', N'1', N'1', N'3', N'2', N'5', N'15', N'6500', N'1', N'3', N'2', N'1900', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025006', N'Giant Mole Leather Mail', N'1', N'1', N'3', N'2', N'5', N'17', N'6500', N'1', N'3', N'2', N'1900', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025007', N'Dewey Decimator Leather Mail', N'1', N'1', N'3', N'2', N'5', N'19', N'6500', N'1', N'3', N'2', N'1900', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025008', N'Cataphract Leather Mail', N'1', N'1', N'3', N'2', N'5', N'21', N'6500', N'1', N'3', N'2', N'1900', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025009', N'Crimson Gloves Leather Mail', N'1', N'1', N'3', N'2', N'5', N'22', N'6500', N'1', N'3', N'2', N'1900', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025010', N'Minotauros Lord Leather Mail', N'1', N'1', N'3', N'2', N'5', N'23', N'6500', N'1', N'3', N'2', N'1900', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025011', N'Sinful Seraph Leather Mail', N'1', N'1', N'3', N'2', N'5', N'23', N'6500', N'1', N'3', N'2', N'1900', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025012', N'Massive Butcher Leather Mail', N'1', N'1', N'3', N'2', N'5', N'28', N'6500', N'1', N'3', N'2', N'1900', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025013', N'Haken Platina Leather Mail', N'1', N'1', N'3', N'2', N'5', N'26', N'6500', N'1', N'3', N'2', N'1900', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025014', N'Viper Leather Mail', N'1', N'1', N'3', N'2', N'5', N'31', N'6500', N'1', N'3', N'2', N'1900', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025015', N'Stone Golem Leather Mail', N'1', N'1', N'3', N'2', N'5', N'29', N'6500', N'1', N'3', N'2', N'1900', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025016', N'Massive Mole Leather Mail', N'1', N'1', N'3', N'2', N'5', N'34', N'6500', N'1', N'3', N'2', N'1900', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025017', N'Goliath Gorilla Leather Mail', N'1', N'1', N'3', N'2', N'5', N'33', N'6500', N'1', N'3', N'2', N'1900', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025018', N'Giant Rafflesia Leather Mail', N'1', N'1', N'3', N'2', N'5', N'38', N'6500', N'1', N'3', N'2', N'1900', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025019', N'Cyborg Gorilla Leather Mail', N'1', N'1', N'3', N'2', N'5', N'34', N'6500', N'1', N'3', N'2', N'1900', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025020', N'Sand Golem Leather Mail', N'1', N'1', N'3', N'2', N'5', N'36', N'6500', N'1', N'3', N'2', N'1900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025021', N'Giant Sandworm Leather Mail', N'1', N'1', N'3', N'2', N'5', N'39', N'6500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025022', N'Spider Lady Leather Mail', N'1', N'1', N'3', N'2', N'5', N'40', N'6500', N'1', N'3', N'2', N'1900', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025023', N'Baron Leather Mail', N'1', N'1', N'3', N'2', N'5', N'43', N'6500', N'1', N'3', N'2', N'1900', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025024', N'Joker Leather Mail', N'1', N'1', N'3', N'2', N'5', N'44', N'6500', N'1', N'3', N'2', N'1900', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025025', N'Chimera Leather Mail', N'1', N'1', N'3', N'2', N'5', N'46', N'6500', N'1', N'3', N'2', N'1900', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025026', N'Conjugo Leather Mail', N'1', N'1', N'3', N'2', N'5', N'48', N'6500', N'1', N'3', N'2', N'1901', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025027', N'Dire Knight Leather Mail', N'1', N'1', N'3', N'2', N'5', N'49', N'6500', N'1', N'3', N'2', N'1901', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025028', N'Sparkle Leather Mail', N'1', N'1', N'3', N'2', N'5', N'51', N'6500', N'1', N'3', N'2', N'1901', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025029', N'Demon King Leather Mail', N'1', N'1', N'3', N'2', N'5', N'52', N'6500', N'1', N'3', N'2', N'1901', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025030', N'Mad Latiel Replica Leather Mail', N'1', N'1', N'3', N'2', N'5', N'53', N'6500', N'1', N'3', N'2', N'1901', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025031', N'Gagarth Replica Leather Mail', N'1', N'1', N'3', N'2', N'5', N'54', N'6500', N'1', N'3', N'2', N'1901', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025032', N'Aurosiac Replica Leather Mail', N'1', N'1', N'3', N'2', N'5', N'55', N'6500', N'1', N'3', N'2', N'1901', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025501', N'Gloves Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'9', N'6500', N'1', N'3', N'2', N'1900', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025502', N'Armored Butcher Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'10', N'6500', N'1', N'3', N'2', N'1900', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025503', N'Boozatron Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'12', N'6500', N'1', N'3', N'2', N'1900', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025504', N'Hammer Butcher Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'14', N'6500', N'1', N'3', N'2', N'1900', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025505', N'Cursed Cataphract Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'15', N'6500', N'1', N'3', N'2', N'1900', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025506', N'Giant Mole Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'17', N'6500', N'1', N'3', N'2', N'1900', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025507', N'Dewey Decimator Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'19', N'6500', N'1', N'3', N'2', N'1900', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025508', N'Cataphract Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'21', N'6500', N'1', N'3', N'2', N'1900', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025509', N'Crimson Gloves Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'22', N'6500', N'1', N'3', N'2', N'1900', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025510', N'Minotauros Lord Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'23', N'6500', N'1', N'3', N'2', N'1900', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025511', N'Sinful Seraph Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'23', N'6500', N'1', N'3', N'2', N'1900', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025512', N'Massive Butcher Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'28', N'6500', N'1', N'3', N'2', N'1900', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025513', N'Haken Platina Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'26', N'6500', N'1', N'3', N'2', N'1900', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025514', N'Viper Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'31', N'6500', N'1', N'3', N'2', N'1900', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025515', N'Stone Golem Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'29', N'6500', N'1', N'3', N'2', N'1900', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025516', N'Massive Mole Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'34', N'6500', N'1', N'3', N'2', N'1900', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025517', N'Goliath Gorilla Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'33', N'6500', N'1', N'3', N'2', N'1900', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025518', N'Giant Rafflesia Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'38', N'6500', N'1', N'3', N'2', N'1900', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025519', N'Cyborg Gorilla Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'34', N'6500', N'1', N'3', N'2', N'1900', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025520', N'Sand Golem Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'36', N'6500', N'1', N'3', N'2', N'1900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025521', N'Giant Sandworm Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'39', N'6500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025522', N'Spider Lady Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'40', N'6500', N'1', N'3', N'2', N'1900', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025523', N'Baron Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'43', N'6500', N'1', N'3', N'2', N'1900', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025524', N'Joker Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'44', N'6500', N'1', N'3', N'2', N'1900', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025525', N'Chimera Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'46', N'6500', N'1', N'3', N'2', N'1900', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025526', N'Conjugo Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'48', N'6500', N'1', N'3', N'2', N'1901', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025527', N'Dire Knight Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'49', N'6500', N'1', N'3', N'2', N'1901', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025528', N'Sparkle Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'51', N'6500', N'1', N'3', N'2', N'1901', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025529', N'Demon King Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'52', N'6500', N'1', N'3', N'2', N'1901', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025530', N'Mad Latiel Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'53', N'6500', N'1', N'3', N'2', N'1901', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025531', N'Gagarth Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'54', N'6500', N'1', N'3', N'2', N'1901', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212025532', N'Aurosiac Delicate Leather Mail', N'1', N'1', N'3', N'2', N'5', N'55', N'6500', N'1', N'3', N'2', N'1901', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034001', N'Lock Chainmail', N'1', N'1', N'5', N'3', N'4', N'10', N'6000', N'1', N'3', N'2', N'3000', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034002', N'Hatch Chainmail', N'1', N'1', N'5', N'3', N'4', N'15', N'6000', N'1', N'3', N'2', N'3000', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034003', N'Bolt Chainmail', N'1', N'1', N'5', N'3', N'4', N'20', N'6000', N'1', N'3', N'2', N'3000', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034004', N'Riveted Chainmail', N'1', N'1', N'5', N'3', N'4', N'25', N'6000', N'1', N'3', N'2', N'3000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034005', N'Forged Chainmail', N'1', N'1', N'5', N'3', N'4', N'30', N'6000', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034006', N'Decorative Chainmail', N'1', N'1', N'5', N'3', N'4', N'35', N'6000', N'1', N'3', N'2', N'3000', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034007', N'Ring Chainmail', N'1', N'1', N'5', N'3', N'4', N'40', N'6000', N'1', N'3', N'2', N'3000', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034008', N'Scaled Chainmail', N'1', N'1', N'5', N'3', N'4', N'45', N'6000', N'1', N'3', N'2', N'3000', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034009', N'Connected Chainmail', N'1', N'1', N'5', N'3', N'4', N'50', N'6000', N'1', N'3', N'2', N'3000', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212034010', N'Expert Silver Tinge Chain Mail', N'1', N'1', N'5', N'3', N'4', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035001', N'Gloves Chain Mail', N'1', N'1', N'3', N'3', N'5', N'9', N'6500', N'1', N'3', N'2', N'3000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035002', N'Armored Butcher Chain Mail', N'1', N'1', N'3', N'3', N'5', N'10', N'6500', N'1', N'3', N'2', N'3000', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035003', N'Boozatron Chain Mail', N'1', N'1', N'3', N'3', N'5', N'12', N'6500', N'1', N'3', N'2', N'3000', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035004', N'Hammer Butcher Chain Mail', N'1', N'1', N'3', N'3', N'5', N'14', N'6500', N'1', N'3', N'2', N'3000', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035005', N'Cursed Cataphract Chain Mail', N'1', N'1', N'3', N'3', N'5', N'15', N'6500', N'1', N'3', N'2', N'3000', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035006', N'Giant Mole Chain Mail', N'1', N'1', N'3', N'3', N'5', N'17', N'6500', N'1', N'3', N'2', N'3000', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035007', N'Dewey Decimator Chain Mail', N'1', N'1', N'3', N'3', N'5', N'19', N'6500', N'1', N'3', N'2', N'3000', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035008', N'Cataphract Chain Mail', N'1', N'1', N'3', N'3', N'5', N'21', N'6500', N'1', N'3', N'2', N'3000', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035009', N'Crimson Gloves Chain Mail', N'1', N'1', N'3', N'3', N'5', N'22', N'6500', N'1', N'3', N'2', N'3000', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035010', N'Minotauros Lord Chain Mail', N'1', N'1', N'3', N'3', N'5', N'23', N'6500', N'1', N'3', N'2', N'3000', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035011', N'Sinful Seraph Chain Mail', N'1', N'1', N'3', N'3', N'5', N'23', N'6500', N'1', N'3', N'2', N'3000', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035012', N'Massive Butcher Chain Mail', N'1', N'1', N'3', N'3', N'5', N'28', N'6500', N'1', N'3', N'2', N'3000', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035013', N'Haken Platina Chain Mail', N'1', N'1', N'3', N'3', N'5', N'26', N'6500', N'1', N'3', N'2', N'3000', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035014', N'Viper Chain Mail', N'1', N'1', N'3', N'3', N'5', N'31', N'6500', N'1', N'3', N'2', N'3000', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035015', N'Stone Golem Chain Mail', N'1', N'1', N'3', N'3', N'5', N'29', N'6500', N'1', N'3', N'2', N'3000', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035016', N'Massive Mole Chain Mail', N'1', N'1', N'3', N'3', N'5', N'34', N'6500', N'1', N'3', N'2', N'3000', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035017', N'Goliath Gorilla Chain Mail', N'1', N'1', N'3', N'3', N'5', N'33', N'6500', N'1', N'3', N'2', N'3000', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035018', N'Giant Rafflesia Chain Mail', N'1', N'1', N'3', N'3', N'5', N'38', N'6500', N'1', N'3', N'2', N'3000', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035019', N'Cyborg Gorilla Chain Mail', N'1', N'1', N'3', N'3', N'5', N'34', N'6500', N'1', N'3', N'2', N'3000', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035020', N'Sand Golem Chain Mail', N'1', N'1', N'3', N'3', N'5', N'36', N'6500', N'1', N'3', N'2', N'3000', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035021', N'Giant Sandworm Chain Mail', N'1', N'1', N'3', N'3', N'5', N'39', N'6500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035022', N'Spider Lady Chain Mail', N'1', N'1', N'3', N'3', N'5', N'40', N'6500', N'1', N'3', N'2', N'3000', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035023', N'Baron Chain Mail', N'1', N'1', N'3', N'3', N'5', N'43', N'6500', N'1', N'3', N'2', N'3000', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035024', N'Joker Chain Mail', N'1', N'1', N'3', N'3', N'5', N'44', N'6500', N'1', N'3', N'2', N'3000', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035025', N'Chimera Chain Mail', N'1', N'1', N'3', N'3', N'5', N'46', N'6500', N'1', N'3', N'2', N'3000', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035026', N'Conjugo Chain Mail', N'1', N'1', N'3', N'3', N'5', N'48', N'6500', N'1', N'3', N'2', N'3000', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035027', N'Dire Knight Chain Mail', N'1', N'1', N'3', N'3', N'5', N'49', N'6500', N'1', N'3', N'2', N'3000', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035028', N'Sparkle Chain Mail', N'1', N'1', N'3', N'3', N'5', N'51', N'6500', N'1', N'3', N'2', N'3000', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035029', N'Demon King Chain Mail', N'1', N'1', N'3', N'3', N'5', N'52', N'6500', N'1', N'3', N'2', N'3000', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035030', N'Mad Latiel Replica Chain Mail', N'1', N'1', N'3', N'3', N'5', N'53', N'6500', N'1', N'3', N'2', N'3000', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035031', N'Gagarth Replica Chain Mail', N'1', N'1', N'3', N'3', N'5', N'54', N'6500', N'1', N'3', N'2', N'3000', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035032', N'Aurosiac Replica Chain Mail', N'1', N'1', N'3', N'3', N'5', N'55', N'6500', N'1', N'3', N'2', N'3000', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035501', N'Gloves Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'9', N'6500', N'1', N'3', N'2', N'3000', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035502', N'Armored Butcher Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'10', N'6500', N'1', N'3', N'2', N'3000', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035503', N'Boozatron Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'12', N'6500', N'1', N'3', N'2', N'3000', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035504', N'Hammer Butcher Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'14', N'6500', N'1', N'3', N'2', N'3000', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035505', N'Cursed Cataphract Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'15', N'6500', N'1', N'3', N'2', N'3000', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035506', N'Giant Mole Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'17', N'6500', N'1', N'3', N'2', N'3000', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035507', N'Dewey Decimator Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'19', N'6500', N'1', N'3', N'2', N'3000', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035508', N'Cataphract Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'21', N'6500', N'1', N'3', N'2', N'3000', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035509', N'Crimson Gloves Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'22', N'6500', N'1', N'3', N'2', N'3000', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035510', N'Minotauros Lord Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'23', N'6500', N'1', N'3', N'2', N'3000', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035511', N'Sinful Seraph Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'23', N'6500', N'1', N'3', N'2', N'3000', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035512', N'Massive Butcher Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'28', N'6500', N'1', N'3', N'2', N'3000', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035513', N'Haken Platina Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'26', N'6500', N'1', N'3', N'2', N'3000', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035514', N'Viper Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'31', N'6500', N'1', N'3', N'2', N'3000', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035515', N'Stone Golem Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'29', N'6500', N'1', N'3', N'2', N'3000', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035516', N'Massive Mole Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'34', N'6500', N'1', N'3', N'2', N'3000', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035517', N'Goliath Gorilla Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'33', N'6500', N'1', N'3', N'2', N'3000', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035518', N'Giant Rafflesia Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'38', N'6500', N'1', N'3', N'2', N'3000', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035519', N'Cyborg Gorilla Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'34', N'6500', N'1', N'3', N'2', N'3000', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035520', N'Sand Golem Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'36', N'6500', N'1', N'3', N'2', N'3000', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035521', N'Giant Sandworm Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'39', N'6500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035522', N'Spider Lady Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'40', N'6500', N'1', N'3', N'2', N'3000', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035523', N'Baron Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'43', N'6500', N'1', N'3', N'2', N'3000', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035524', N'Joker Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'44', N'6500', N'1', N'3', N'2', N'3000', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035525', N'Chimera Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'46', N'6500', N'1', N'3', N'2', N'3000', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035526', N'Conjugo Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'48', N'6500', N'1', N'3', N'2', N'3000', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035527', N'Dire Knight Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'49', N'6500', N'1', N'3', N'2', N'3000', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035528', N'Sparkle Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'51', N'6500', N'1', N'3', N'2', N'3000', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035529', N'Demon King Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'52', N'6500', N'1', N'3', N'2', N'3000', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035530', N'Mad Latiel Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'53', N'6500', N'1', N'3', N'2', N'3000', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035531', N'Gagarth Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'54', N'6500', N'1', N'3', N'2', N'3000', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212035532', N'Aurosiac Delicate Chain Mail', N'1', N'1', N'3', N'3', N'5', N'55', N'6500', N'1', N'3', N'2', N'3000', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044001', N'Rennzeug Plate', N'1', N'1', N'5', N'4', N'4', N'10', N'6000', N'1', N'3', N'2', N'5700', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044002', N'Stechzeug Plate', N'1', N'1', N'5', N'4', N'4', N'15', N'6000', N'1', N'3', N'2', N'5700', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044003', N'Kolbenturnier Plate', N'1', N'1', N'5', N'4', N'4', N'20', N'6000', N'1', N'3', N'2', N'5700', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044004', N'Behterets Plate', N'1', N'1', N'5', N'4', N'4', N'25', N'6000', N'1', N'3', N'2', N'5700', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044005', N'Yushman Plate', N'1', N'1', N'5', N'4', N'4', N'30', N'6000', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044006', N'Kalantar Plate', N'1', N'1', N'5', N'4', N'4', N'35', N'6000', N'1', N'3', N'2', N'5700', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044007', N'Coriaceus Plate', N'1', N'1', N'5', N'4', N'4', N'40', N'6000', N'1', N'3', N'2', N'5700', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044008', N'Zen Plate', N'1', N'1', N'5', N'4', N'4', N'45', N'6000', N'1', N'3', N'2', N'5700', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044009', N'Perfect Plate', N'1', N'1', N'5', N'4', N'4', N'50', N'6000', N'1', N'3', N'2', N'5700', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212044010', N'Expert Dual Prop Plate', N'1', N'1', N'5', N'4', N'4', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045001', N'Gloves Plate', N'1', N'1', N'3', N'4', N'5', N'9', N'6500', N'1', N'3', N'2', N'5700', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045002', N'Armored Butcher Plate', N'1', N'1', N'3', N'4', N'5', N'10', N'6500', N'1', N'3', N'2', N'5700', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045003', N'Boozatron Plate', N'1', N'1', N'3', N'4', N'5', N'12', N'6500', N'1', N'3', N'2', N'5700', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045004', N'Hammer Butcher Plate', N'1', N'1', N'3', N'4', N'5', N'14', N'6500', N'1', N'3', N'2', N'5700', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045005', N'Cursed Cataphract Plate', N'1', N'1', N'3', N'4', N'5', N'15', N'6500', N'1', N'3', N'2', N'5700', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045006', N'Giant Mole Plate', N'1', N'1', N'3', N'4', N'5', N'17', N'6500', N'1', N'3', N'2', N'5700', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045007', N'Dewey Decimator Plate', N'1', N'1', N'3', N'4', N'5', N'19', N'6500', N'1', N'3', N'2', N'5700', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045008', N'Cataphract Plate', N'1', N'1', N'3', N'4', N'5', N'21', N'6500', N'1', N'3', N'2', N'5700', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045009', N'Crimson Gloves Plate', N'1', N'1', N'3', N'4', N'5', N'22', N'6500', N'1', N'3', N'2', N'5700', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045010', N'Minotauros Lord Plate', N'1', N'1', N'3', N'4', N'5', N'23', N'6500', N'1', N'3', N'2', N'5700', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045011', N'Sinful Seraph Plate', N'1', N'1', N'3', N'4', N'5', N'23', N'6500', N'1', N'3', N'2', N'5700', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045012', N'Massive Butcher Plate', N'1', N'1', N'3', N'4', N'5', N'28', N'6500', N'1', N'3', N'2', N'5700', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045013', N'Haken Platina Plate', N'1', N'1', N'3', N'4', N'5', N'26', N'6500', N'1', N'3', N'2', N'5700', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045014', N'Viper Plate', N'1', N'1', N'3', N'4', N'5', N'31', N'6500', N'1', N'3', N'2', N'5700', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045015', N'Stone Golem Plate', N'1', N'1', N'3', N'4', N'5', N'29', N'6500', N'1', N'3', N'2', N'5700', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045016', N'Massive Mole Plate', N'1', N'1', N'3', N'4', N'5', N'34', N'6500', N'1', N'3', N'2', N'5700', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045017', N'Goliath Gorilla Plate', N'1', N'1', N'3', N'4', N'5', N'33', N'6500', N'1', N'3', N'2', N'5700', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045018', N'Giant Rafflesia Plate', N'1', N'1', N'3', N'4', N'5', N'38', N'6500', N'1', N'3', N'2', N'5700', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045019', N'Cyborg Gorilla Plate', N'1', N'1', N'3', N'4', N'5', N'34', N'6500', N'1', N'3', N'2', N'5700', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045020', N'Sand Golem Plate', N'1', N'1', N'3', N'4', N'5', N'36', N'6500', N'1', N'3', N'2', N'5700', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045021', N'Giant Sandworm Plate', N'1', N'1', N'3', N'4', N'5', N'39', N'6500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045022', N'Spider Lady Plate', N'1', N'1', N'3', N'4', N'5', N'40', N'6500', N'1', N'3', N'2', N'5700', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045023', N'Baron Plate', N'1', N'1', N'3', N'4', N'5', N'43', N'6500', N'1', N'3', N'2', N'5700', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045024', N'Joker Plate', N'1', N'1', N'3', N'4', N'5', N'44', N'6500', N'1', N'3', N'2', N'5700', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045025', N'Chimera Plate', N'1', N'1', N'3', N'4', N'5', N'46', N'6500', N'1', N'3', N'2', N'5700', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045026', N'Conjugo Plate', N'1', N'1', N'3', N'4', N'5', N'48', N'6500', N'1', N'3', N'2', N'5703', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045027', N'Dire Knight Plate', N'1', N'1', N'3', N'4', N'5', N'49', N'6500', N'1', N'3', N'2', N'5704', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045028', N'Sparkle Plate', N'1', N'1', N'3', N'4', N'5', N'51', N'6500', N'1', N'3', N'2', N'5705', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045029', N'Demon King Plate', N'1', N'1', N'3', N'4', N'5', N'52', N'6500', N'1', N'3', N'2', N'5706', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045030', N'Mad Latiel Replica Plate', N'1', N'1', N'3', N'4', N'5', N'53', N'6500', N'1', N'3', N'2', N'5706', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045031', N'Gagarth Replica Plate', N'1', N'1', N'3', N'4', N'5', N'54', N'6500', N'1', N'3', N'2', N'5706', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045032', N'Aurosiac Replica Plate', N'1', N'1', N'3', N'4', N'5', N'55', N'6500', N'1', N'3', N'2', N'5706', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045501', N'Gloves Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'9', N'6500', N'1', N'3', N'2', N'5700', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045502', N'Armored Butcher Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'10', N'6500', N'1', N'3', N'2', N'5700', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045503', N'Boozatron Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'12', N'6500', N'1', N'3', N'2', N'5700', N'1200', N'198')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045504', N'Hammer Butcher Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'14', N'6500', N'1', N'3', N'2', N'5700', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045505', N'Cursed Cataphract Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'15', N'6500', N'1', N'3', N'2', N'5700', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045506', N'Giant Mole Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'17', N'6500', N'1', N'3', N'2', N'5700', N'2000', N'330')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045507', N'Dewey Decimator Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'19', N'6500', N'1', N'3', N'2', N'5700', N'2370', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045508', N'Cataphract Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'21', N'6500', N'1', N'3', N'2', N'5700', N'2770', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045509', N'Crimson Gloves Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'22', N'6500', N'1', N'3', N'2', N'5700', N'2980', N'491')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045510', N'Minotauros Lord Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'23', N'6500', N'1', N'3', N'2', N'5700', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045511', N'Sinful Seraph Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'23', N'6500', N'1', N'3', N'2', N'5700', N'3200', N'528')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045512', N'Massive Butcher Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'28', N'6500', N'1', N'3', N'2', N'5700', N'4400', N'726')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045513', N'Haken Platina Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'26', N'6500', N'1', N'3', N'2', N'5700', N'3900', N'643')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045514', N'Viper Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'31', N'6500', N'1', N'3', N'2', N'5700', N'5210', N'861')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045515', N'Stone Golem Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'29', N'6500', N'1', N'3', N'2', N'5700', N'4660', N'768')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045516', N'Massive Mole Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'34', N'6500', N'1', N'3', N'2', N'5700', N'5832', N'963')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045517', N'Goliath Gorilla Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'33', N'6500', N'1', N'3', N'2', N'5700', N'5780', N'953')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045518', N'Giant Rafflesia Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'38', N'6500', N'1', N'3', N'2', N'5700', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045519', N'Cyborg Gorilla Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'34', N'6500', N'1', N'3', N'2', N'5700', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045520', N'Sand Golem Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'36', N'6500', N'1', N'3', N'2', N'5700', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045521', N'Giant Sandworm Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'39', N'6500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045522', N'Spider Lady Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'40', N'6500', N'1', N'3', N'2', N'5700', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045523', N'Baron Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'43', N'6500', N'1', N'3', N'2', N'5700', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045524', N'Joker Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'44', N'6500', N'1', N'3', N'2', N'5700', N'8980', N'1481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045525', N'Chimera Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'46', N'6500', N'1', N'3', N'2', N'5700', N'11010', N'1818')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045526', N'Conjugo Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'48', N'6500', N'1', N'3', N'2', N'5703', N'11000', N'1650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045527', N'Dire Knight Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'49', N'6500', N'1', N'3', N'2', N'5704', N'11410', N'1712')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045528', N'Sparkle Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'51', N'6500', N'1', N'3', N'2', N'5705', N'12240', N'1836')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045529', N'Demon King Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'52', N'6500', N'1', N'3', N'2', N'5706', N'12670', N'1901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045530', N'Mad Latiel Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'53', N'6500', N'1', N'3', N'2', N'5706', N'13100', N'2162')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045531', N'Gagarth Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'54', N'6500', N'1', N'3', N'2', N'5706', N'13540', N'2234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'212045532', N'Aurosiac Delicate Plate', N'1', N'1', N'3', N'4', N'5', N'55', N'6500', N'1', N'3', N'2', N'5706', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014001', N'Ravager Leggings', N'1', N'1', N'5', N'1', N'4', N'10', N'5500', N'1', N'3', N'2', N'1400', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014002', N'Mal Leggings', N'1', N'1', N'5', N'1', N'4', N'15', N'5500', N'1', N'3', N'2', N'1400', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014003', N'Glowing Leggings', N'1', N'1', N'5', N'1', N'4', N'20', N'5500', N'1', N'3', N'2', N'1400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014004', N'Glitter Leggings', N'1', N'1', N'5', N'1', N'4', N'25', N'5500', N'1', N'3', N'2', N'1400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014005', N'Avid Leggings', N'1', N'1', N'5', N'1', N'4', N'30', N'5500', N'1', N'3', N'2', N'1400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014006', N'Radiant Leggings', N'1', N'1', N'5', N'1', N'4', N'35', N'5500', N'1', N'3', N'2', N'1400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014007', N'Brilliant Leggings', N'1', N'1', N'5', N'1', N'4', N'40', N'5500', N'1', N'3', N'2', N'1400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014008', N'Sparkle Leggings', N'1', N'1', N'5', N'1', N'4', N'45', N'5500', N'1', N'3', N'2', N'1400', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014009', N'Beautiful Leggings', N'1', N'1', N'5', N'1', N'4', N'50', N'5500', N'1', N'3', N'2', N'1400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214014010', N'Expert Dusk Leggings', N'1', N'1', N'5', N'1', N'4', N'55', N'5500', N'1', N'3', N'2', N'1400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015001', N'Gloves Pants', N'1', N'1', N'3', N'1', N'5', N'9', N'6000', N'1', N'3', N'2', N'1400', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015002', N'Armored Butcher Pants', N'1', N'1', N'3', N'1', N'5', N'10', N'6000', N'1', N'3', N'2', N'1400', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015003', N'Boozatron Pants', N'1', N'1', N'3', N'1', N'5', N'12', N'6000', N'1', N'3', N'2', N'1400', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015004', N'Hammer Butcher Pants', N'1', N'1', N'3', N'1', N'5', N'14', N'6000', N'1', N'3', N'2', N'1400', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015005', N'Cursed Cataphract Pants', N'1', N'1', N'3', N'1', N'5', N'15', N'6000', N'1', N'3', N'2', N'1400', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015006', N'Giant Mole Pants', N'1', N'1', N'3', N'1', N'5', N'17', N'6000', N'1', N'3', N'2', N'1400', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015007', N'Dewey Decimator Pants', N'1', N'1', N'3', N'1', N'5', N'19', N'6000', N'1', N'3', N'2', N'1400', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015008', N'Cataphract Pants', N'1', N'1', N'3', N'1', N'5', N'21', N'6000', N'1', N'3', N'2', N'1400', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015009', N'Crimson Gloves Pants', N'1', N'1', N'3', N'1', N'5', N'22', N'6000', N'1', N'3', N'2', N'1400', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015010', N'Minotauros Lord Pants', N'1', N'1', N'3', N'1', N'5', N'23', N'6000', N'1', N'3', N'2', N'1400', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015011', N'Sinful Seraph Pants', N'1', N'1', N'3', N'1', N'5', N'23', N'6000', N'1', N'3', N'2', N'1400', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015012', N'Massive Butcher Pants', N'1', N'1', N'3', N'1', N'5', N'28', N'6000', N'1', N'3', N'2', N'1400', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015013', N'Haken Platina Pants', N'1', N'1', N'3', N'1', N'5', N'26', N'6000', N'1', N'3', N'2', N'1400', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015014', N'Viper Pants', N'1', N'1', N'3', N'1', N'5', N'31', N'6000', N'1', N'3', N'2', N'1400', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015015', N'Stone Golem Pants', N'1', N'1', N'3', N'1', N'5', N'29', N'6000', N'1', N'3', N'2', N'1400', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015016', N'Massive Mole Pants', N'1', N'1', N'3', N'1', N'5', N'34', N'6000', N'1', N'3', N'2', N'1400', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015017', N'Goliath Gorilla Pants', N'1', N'1', N'3', N'1', N'5', N'33', N'6000', N'1', N'3', N'2', N'1400', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015018', N'Giant Rafflesia Pants', N'1', N'1', N'3', N'1', N'5', N'38', N'6000', N'1', N'3', N'2', N'1400', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015019', N'Cyborg Gorilla Pants', N'1', N'1', N'3', N'1', N'5', N'34', N'6000', N'1', N'3', N'2', N'1400', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015020', N'Sand Golem Pants', N'1', N'1', N'3', N'1', N'5', N'36', N'6000', N'1', N'3', N'2', N'1400', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015021', N'Giant Sandworm Pants', N'1', N'1', N'3', N'1', N'5', N'39', N'6000', N'1', N'3', N'2', N'1400', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015022', N'Spider Lady Pants', N'1', N'1', N'3', N'1', N'5', N'40', N'6000', N'1', N'3', N'2', N'1400', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015023', N'Baron Leggings', N'1', N'1', N'3', N'1', N'5', N'43', N'6000', N'1', N'3', N'2', N'1400', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015024', N'Joker Leggings', N'1', N'1', N'3', N'1', N'5', N'44', N'6000', N'1', N'3', N'2', N'1400', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015025', N'Chimera Leggings', N'1', N'1', N'3', N'1', N'5', N'46', N'6000', N'1', N'3', N'2', N'1400', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015026', N'Conjugo Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'48', N'6000', N'1', N'3', N'2', N'1400', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015027', N'Dire Knight Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'49', N'6000', N'1', N'3', N'2', N'1400', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015028', N'Sparkle Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'51', N'6000', N'1', N'3', N'2', N'1400', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015029', N'Demon King Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'52', N'6000', N'1', N'3', N'2', N'1400', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015030', N'Mad Latiel Replica Leggings', N'1', N'1', N'3', N'1', N'5', N'53', N'6000', N'1', N'3', N'2', N'1400', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015031', N'Gagarth Replica Leggings', N'1', N'1', N'3', N'1', N'5', N'54', N'6000', N'1', N'3', N'2', N'1400', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015032', N'Aurosiac Replica Leggings', N'1', N'1', N'3', N'1', N'5', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015501', N'Gloves Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'9', N'6000', N'1', N'3', N'2', N'1400', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015502', N'Armored Butcher Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'10', N'6000', N'1', N'3', N'2', N'1400', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015503', N'Boozatron Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'12', N'6000', N'1', N'3', N'2', N'1400', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015504', N'Hammer Butcher Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'14', N'6000', N'1', N'3', N'2', N'1400', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015505', N'Cursed Cataphract Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'15', N'6000', N'1', N'3', N'2', N'1400', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015506', N'Giant Mole Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'17', N'6000', N'1', N'3', N'2', N'1400', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015507', N'Dewey Decimator Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'19', N'6000', N'1', N'3', N'2', N'1400', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015508', N'Cataphract Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'21', N'6000', N'1', N'3', N'2', N'1400', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015509', N'Crimson Gloves Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'22', N'6000', N'1', N'3', N'2', N'1400', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015510', N'Minotauros Lord Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'23', N'6000', N'1', N'3', N'2', N'1400', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015511', N'Sinful Seraph Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'23', N'6000', N'1', N'3', N'2', N'1400', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015512', N'Massive Butcher Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'28', N'6000', N'1', N'3', N'2', N'1400', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015513', N'Haken Platina Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'26', N'6000', N'1', N'3', N'2', N'1400', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015514', N'Viper Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'31', N'6000', N'1', N'3', N'2', N'1400', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015515', N'Stone Golem Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'29', N'6000', N'1', N'3', N'2', N'1400', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015516', N'Massive Mole Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'34', N'6000', N'1', N'3', N'2', N'1400', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015517', N'Goliath Gorilla Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'33', N'6000', N'1', N'3', N'2', N'1400', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015518', N'Giant Rafflesia Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'38', N'6000', N'1', N'3', N'2', N'1400', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015519', N'Cyborg Gorilla Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'34', N'6000', N'1', N'3', N'2', N'1400', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015520', N'Sand Golem Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'36', N'6000', N'1', N'3', N'2', N'1400', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015521', N'Giant Sandworm Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'39', N'6000', N'1', N'3', N'2', N'1400', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015522', N'Spider Lady Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'40', N'6000', N'1', N'3', N'2', N'1400', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015523', N'Baron Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'43', N'6000', N'1', N'3', N'2', N'1400', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015524', N'Joker Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'44', N'6000', N'1', N'3', N'2', N'1400', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015525', N'Chimera Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'46', N'6000', N'1', N'3', N'2', N'1400', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015526', N'Conjugo Delicate Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'48', N'6000', N'1', N'3', N'2', N'1400', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015527', N'Dire Knight Delicate Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'49', N'6000', N'1', N'3', N'2', N'1400', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015528', N'Sparkle Delicate Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'51', N'6000', N'1', N'3', N'2', N'1400', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015529', N'Demon King Delicate Leather Leggings', N'1', N'1', N'3', N'1', N'5', N'52', N'6000', N'1', N'3', N'2', N'1400', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015530', N'Mad Latiel Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'53', N'6000', N'1', N'3', N'2', N'1400', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015531', N'Gagarth Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'54', N'6000', N'1', N'3', N'2', N'1400', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214015532', N'Aurosiac Delicate Leggings', N'1', N'1', N'3', N'1', N'5', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024001', N'Chamois Pants', N'1', N'1', N'5', N'2', N'4', N'10', N'5500', N'1', N'3', N'2', N'1900', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024002', N'Vachetta Pants', N'1', N'1', N'5', N'2', N'4', N'15', N'5500', N'1', N'3', N'2', N'1900', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024003', N'Nappa Pants', N'1', N'1', N'5', N'2', N'4', N'20', N'5500', N'1', N'3', N'2', N'1900', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024004', N'Cordovan Pants', N'1', N'1', N'5', N'2', N'4', N'25', N'5500', N'1', N'3', N'2', N'1900', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024005', N'Aniline Pants', N'1', N'1', N'5', N'2', N'4', N'30', N'5500', N'1', N'3', N'2', N'1900', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024006', N'Adarga Pants', N'1', N'1', N'5', N'2', N'4', N'35', N'5500', N'1', N'3', N'2', N'1900', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024007', N'Bonded Pants', N'1', N'1', N'5', N'2', N'4', N'40', N'5500', N'1', N'3', N'2', N'1900', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024008', N'Anointed Pants', N'1', N'1', N'5', N'2', N'4', N'45', N'5500', N'1', N'3', N'2', N'1900', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024009', N'Forsaken Pants', N'1', N'1', N'5', N'2', N'4', N'50', N'5500', N'1', N'3', N'2', N'1900', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214024010', N'Expert Levices Leather Leggings', N'1', N'1', N'5', N'2', N'4', N'55', N'5500', N'1', N'3', N'2', N'1900', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025001', N'Gloves Leather Pants', N'1', N'1', N'3', N'2', N'5', N'9', N'6000', N'1', N'3', N'2', N'1900', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025002', N'Armored Butcher Leather Pants', N'1', N'1', N'3', N'2', N'5', N'10', N'6000', N'1', N'3', N'2', N'1900', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025003', N'Boozatron Leather Pants', N'1', N'1', N'3', N'2', N'5', N'12', N'6000', N'1', N'3', N'2', N'1900', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025004', N'Hammer Butcher Leather Pants', N'1', N'1', N'3', N'2', N'5', N'14', N'6000', N'1', N'3', N'2', N'1900', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025005', N'Cursed Cataphract Leather Pants', N'1', N'1', N'3', N'2', N'5', N'15', N'6000', N'1', N'3', N'2', N'1900', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025006', N'Giant Mole Leather Pants', N'1', N'1', N'3', N'2', N'5', N'17', N'6000', N'1', N'3', N'2', N'1900', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025007', N'Dewey Decimator Leather Pants', N'1', N'1', N'3', N'2', N'5', N'19', N'6000', N'1', N'3', N'2', N'1900', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025008', N'Cataphract Leather Pants', N'1', N'1', N'3', N'2', N'5', N'21', N'6000', N'1', N'3', N'2', N'1900', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025009', N'Crimson Gloves Leather Pants', N'1', N'1', N'3', N'2', N'5', N'22', N'6000', N'1', N'3', N'2', N'1900', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025010', N'Minotauros Lord Leather Pants', N'1', N'1', N'3', N'2', N'5', N'23', N'6000', N'1', N'3', N'2', N'1900', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025011', N'Sinful Seraph Leather Pants', N'1', N'1', N'3', N'2', N'5', N'23', N'6000', N'1', N'3', N'2', N'1900', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025012', N'Massive Butcher Leather Pants', N'1', N'1', N'3', N'2', N'5', N'28', N'6000', N'1', N'3', N'2', N'1900', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025013', N'Haken Platina Leather Pants', N'1', N'1', N'3', N'2', N'5', N'26', N'6000', N'1', N'3', N'2', N'1900', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025014', N'Viper Leather Pants', N'1', N'1', N'3', N'2', N'5', N'31', N'6000', N'1', N'3', N'2', N'1900', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025015', N'Stone Golem Leather Pants', N'1', N'1', N'3', N'2', N'5', N'29', N'6000', N'1', N'3', N'2', N'1900', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025016', N'Massive Mole Leather Pants', N'1', N'1', N'3', N'2', N'5', N'34', N'6000', N'1', N'3', N'2', N'1900', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025017', N'Goliath Gorilla Leather Pants', N'1', N'1', N'3', N'2', N'5', N'33', N'6000', N'1', N'3', N'2', N'1900', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025018', N'Giant Rafflesia Leather Pants', N'1', N'1', N'3', N'2', N'5', N'38', N'6000', N'1', N'3', N'2', N'1900', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025019', N'Cyborg Gorilla Leather Pants', N'1', N'1', N'3', N'2', N'5', N'34', N'6000', N'1', N'3', N'2', N'1900', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025020', N'Sand Golem Leather Pants', N'1', N'1', N'3', N'2', N'5', N'36', N'6000', N'1', N'3', N'2', N'1900', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025021', N'Giant Sandworm Leather Pants', N'1', N'1', N'3', N'2', N'5', N'39', N'6000', N'1', N'3', N'2', N'1900', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025022', N'Spider Lady Leather Pants', N'1', N'1', N'3', N'2', N'5', N'40', N'6000', N'1', N'3', N'2', N'1900', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025023', N'Baron Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'43', N'6000', N'1', N'3', N'2', N'1900', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025024', N'Joker Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'44', N'6000', N'1', N'3', N'2', N'1900', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025025', N'Chimera Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'46', N'6000', N'1', N'3', N'2', N'1900', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025026', N'Conjugo Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'48', N'6000', N'1', N'3', N'2', N'1900', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025027', N'Dire Knight Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'49', N'6000', N'1', N'3', N'2', N'1900', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025028', N'Sparkle Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'51', N'6000', N'1', N'3', N'2', N'1900', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025029', N'Demon King Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'52', N'6000', N'1', N'3', N'2', N'1900', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025030', N'Mad Latiel Replica Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'53', N'6000', N'1', N'3', N'2', N'1900', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025031', N'Gagarth Replica Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'54', N'6000', N'1', N'3', N'2', N'1900', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025032', N'Aurosiac Replica Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025501', N'Gloves Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'9', N'6000', N'1', N'3', N'2', N'1900', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025502', N'Armored Butcher Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'10', N'6000', N'1', N'3', N'2', N'1900', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025503', N'Boozatron Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'12', N'6000', N'1', N'3', N'2', N'1900', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025504', N'Hammer Butcher Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'14', N'6000', N'1', N'3', N'2', N'1900', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025505', N'Cursed Cataphract Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'15', N'6000', N'1', N'3', N'2', N'1900', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025506', N'Giant Mole Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'17', N'6000', N'1', N'3', N'2', N'1900', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025507', N'Dewey Decimator Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'19', N'6000', N'1', N'3', N'2', N'1900', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025508', N'Cataphract Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'21', N'6000', N'1', N'3', N'2', N'1900', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025509', N'Crimson Gloves Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'22', N'6000', N'1', N'3', N'2', N'1900', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025510', N'Minotauros Lord Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'23', N'6000', N'1', N'3', N'2', N'1900', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025511', N'Sinful Seraph Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'23', N'6000', N'1', N'3', N'2', N'1900', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025512', N'Massive Butcher Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'28', N'6000', N'1', N'3', N'2', N'1900', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025513', N'Haken Platina Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'26', N'6000', N'1', N'3', N'2', N'1900', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025514', N'Viper Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'31', N'6000', N'1', N'3', N'2', N'1900', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025515', N'Stone Golem Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'29', N'6000', N'1', N'3', N'2', N'1900', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025516', N'Massive Mole Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'34', N'6000', N'1', N'3', N'2', N'1900', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025517', N'Goliath Gorilla Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'33', N'6000', N'1', N'3', N'2', N'1900', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025518', N'Giant Rafflesia Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'38', N'6000', N'1', N'3', N'2', N'1900', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025519', N'Cyborg Gorilla Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'34', N'6000', N'1', N'3', N'2', N'1900', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025520', N'Sand Golem Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'36', N'6000', N'1', N'3', N'2', N'1900', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025521', N'Giant Sandworm Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'39', N'6000', N'1', N'3', N'2', N'1900', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025522', N'Spider Lady Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'40', N'6000', N'1', N'3', N'2', N'1900', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025523', N'Baron Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'43', N'6000', N'1', N'3', N'2', N'1900', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025524', N'Joker Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'44', N'6000', N'1', N'3', N'2', N'1900', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025525', N'Chimera Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'46', N'6000', N'1', N'3', N'2', N'1900', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025526', N'Conjugo Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'48', N'6000', N'1', N'3', N'2', N'1900', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025527', N'Dire Knight Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'49', N'6000', N'1', N'3', N'2', N'1900', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025528', N'Sparkle Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'51', N'6000', N'1', N'3', N'2', N'1900', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025529', N'Demon King Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'52', N'6000', N'1', N'3', N'2', N'1900', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025530', N'Mad Latiel Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'53', N'6000', N'1', N'3', N'2', N'1900', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025531', N'Gagarth Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'54', N'6000', N'1', N'3', N'2', N'1900', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214025532', N'Aurosiac Delicate Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034001', N'Lock Chausses', N'1', N'1', N'5', N'3', N'4', N'10', N'5500', N'1', N'3', N'2', N'3000', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034002', N'Hatch Chausses', N'1', N'1', N'5', N'3', N'4', N'15', N'5500', N'1', N'3', N'2', N'3000', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034003', N'Bolt Chausses', N'1', N'1', N'5', N'3', N'4', N'20', N'5500', N'1', N'3', N'2', N'3000', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034004', N'Riveted Chausses', N'1', N'1', N'5', N'3', N'4', N'25', N'5500', N'1', N'3', N'2', N'3000', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034005', N'Forged Chausses', N'1', N'1', N'5', N'3', N'4', N'30', N'5500', N'1', N'3', N'2', N'3000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034006', N'Decorative Chausses', N'1', N'1', N'5', N'3', N'4', N'35', N'5500', N'1', N'3', N'2', N'3000', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034007', N'Ring Chausses', N'1', N'1', N'5', N'3', N'4', N'40', N'5500', N'1', N'3', N'2', N'3000', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034008', N'Scaled Chausses', N'1', N'1', N'5', N'3', N'4', N'45', N'5500', N'1', N'3', N'2', N'3000', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034009', N'Connected Chausses', N'1', N'1', N'5', N'3', N'4', N'50', N'5500', N'1', N'3', N'2', N'3000', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214034010', N'Expert Silver Tinge Greaves', N'1', N'1', N'5', N'3', N'4', N'55', N'5500', N'1', N'3', N'2', N'3000', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035001', N'Gloves Greaves', N'1', N'1', N'3', N'3', N'5', N'9', N'6000', N'1', N'3', N'2', N'3000', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035002', N'Armored Butcher Greaves', N'1', N'1', N'3', N'3', N'5', N'10', N'6000', N'1', N'3', N'2', N'3000', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035003', N'Boozatron Greaves', N'1', N'1', N'3', N'3', N'5', N'12', N'6000', N'1', N'3', N'2', N'3000', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035004', N'Hammer Butcher Greaves', N'1', N'1', N'3', N'3', N'5', N'14', N'6000', N'1', N'3', N'2', N'3000', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035005', N'Cursed Cataphract Greaves', N'1', N'1', N'3', N'3', N'5', N'15', N'6000', N'1', N'3', N'2', N'3000', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035006', N'Giant Mole Greaves', N'1', N'1', N'3', N'3', N'5', N'17', N'6000', N'1', N'3', N'2', N'3000', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035007', N'Dewey Decimator Greaves', N'1', N'1', N'3', N'3', N'5', N'19', N'6000', N'1', N'3', N'2', N'3000', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035008', N'Cataphract Greaves', N'1', N'1', N'3', N'3', N'5', N'21', N'6000', N'1', N'3', N'2', N'3000', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035009', N'Crimson Gloves Greaves', N'1', N'1', N'3', N'3', N'5', N'22', N'6000', N'1', N'3', N'2', N'3000', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035010', N'Minotauros Lord Greaves', N'1', N'1', N'3', N'3', N'5', N'23', N'6000', N'1', N'3', N'2', N'3000', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035011', N'Sinful Seraph Greaves', N'1', N'1', N'3', N'3', N'5', N'23', N'6000', N'1', N'3', N'2', N'3000', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035012', N'Massive Butcher Greaves', N'1', N'1', N'3', N'3', N'5', N'28', N'6000', N'1', N'3', N'2', N'3000', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035013', N'Haken Platina Greaves', N'1', N'1', N'3', N'3', N'5', N'26', N'6000', N'1', N'3', N'2', N'3000', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035014', N'Viper Greaves', N'1', N'1', N'3', N'3', N'5', N'31', N'6000', N'1', N'3', N'2', N'3000', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035015', N'Stone Golem Greaves', N'1', N'1', N'3', N'3', N'5', N'29', N'6000', N'1', N'3', N'2', N'3000', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035016', N'Massive Mole Greaves', N'1', N'1', N'3', N'3', N'5', N'34', N'6000', N'1', N'3', N'2', N'3000', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035017', N'Goliath Gorilla Greaves', N'1', N'1', N'3', N'3', N'5', N'33', N'6000', N'1', N'3', N'2', N'3000', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035018', N'Giant Rafflesia Greaves', N'1', N'1', N'3', N'3', N'5', N'38', N'6000', N'1', N'3', N'2', N'3000', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035019', N'Cyborg Gorilla Greaves', N'1', N'1', N'3', N'3', N'5', N'34', N'6000', N'1', N'3', N'2', N'3000', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035020', N'Sand Golem Greaves', N'1', N'1', N'3', N'3', N'5', N'36', N'6000', N'1', N'3', N'2', N'3000', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035021', N'Giant Sandworm Greaves', N'1', N'1', N'3', N'3', N'5', N'39', N'6000', N'1', N'3', N'2', N'3000', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035022', N'Spider Lady Greaves', N'1', N'1', N'3', N'3', N'5', N'40', N'6000', N'1', N'3', N'2', N'3000', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035023', N'Baron Greaves', N'1', N'1', N'3', N'3', N'5', N'43', N'6000', N'1', N'3', N'2', N'3000', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035024', N'Joker Greaves', N'1', N'1', N'3', N'3', N'5', N'44', N'6000', N'1', N'3', N'2', N'3000', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035025', N'Chimera Greaves', N'1', N'1', N'3', N'3', N'5', N'46', N'6000', N'1', N'3', N'2', N'3000', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035026', N'Conjugo Greaves', N'1', N'1', N'3', N'3', N'5', N'48', N'6000', N'1', N'3', N'2', N'3000', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035027', N'Dire Knight Greaves', N'1', N'1', N'3', N'3', N'5', N'49', N'6000', N'1', N'3', N'2', N'3000', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035028', N'Sparkle Greaves', N'1', N'1', N'3', N'3', N'5', N'51', N'6000', N'1', N'3', N'2', N'3000', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035029', N'Demon King Greaves', N'1', N'1', N'3', N'3', N'5', N'52', N'6000', N'1', N'3', N'2', N'3000', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035030', N'Mad Latiel Replica Greaves', N'1', N'1', N'3', N'3', N'5', N'53', N'6000', N'1', N'3', N'2', N'3000', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035031', N'Gagarth Replica Greaves', N'1', N'1', N'3', N'3', N'5', N'54', N'6000', N'1', N'3', N'2', N'3000', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035032', N'Aurosiac Replica Greaves', N'1', N'1', N'3', N'3', N'5', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035501', N'Gloves Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'9', N'6000', N'1', N'3', N'2', N'3000', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035502', N'Armored Butcher Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'10', N'6000', N'1', N'3', N'2', N'3000', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035503', N'Boozatron Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'12', N'6000', N'1', N'3', N'2', N'3000', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035504', N'Hammer Butcher Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'14', N'6000', N'1', N'3', N'2', N'3000', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035505', N'Cursed Cataphract Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'15', N'6000', N'1', N'3', N'2', N'3000', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035506', N'Giant Mole Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'17', N'6000', N'1', N'3', N'2', N'3000', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035507', N'Dewey Decimator Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'19', N'6000', N'1', N'3', N'2', N'3000', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035508', N'Cataphract Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'21', N'6000', N'1', N'3', N'2', N'3000', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035509', N'Crimson Gloves Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'22', N'6000', N'1', N'3', N'2', N'3000', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035510', N'Minotauros Lord Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'23', N'6000', N'1', N'3', N'2', N'3000', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035511', N'Sinful Seraph Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'23', N'6000', N'1', N'3', N'2', N'3000', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035512', N'Massive Butcher Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'28', N'6000', N'1', N'3', N'2', N'3000', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035513', N'Haken Platina Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'26', N'6000', N'1', N'3', N'2', N'3000', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035514', N'Viper Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'31', N'6000', N'1', N'3', N'2', N'3000', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035515', N'Stone Golem Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'29', N'6000', N'1', N'3', N'2', N'3000', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035516', N'Massive Mole Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'34', N'6000', N'1', N'3', N'2', N'3000', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035517', N'Goliath Gorilla Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'33', N'6000', N'1', N'3', N'2', N'3000', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035518', N'Giant Rafflesia Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'38', N'6000', N'1', N'3', N'2', N'3000', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035519', N'Cyborg Gorilla Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'34', N'6000', N'1', N'3', N'2', N'3000', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035520', N'Sand Golem Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'36', N'6000', N'1', N'3', N'2', N'3000', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035521', N'Giant Sandworm Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'39', N'6000', N'1', N'3', N'2', N'3000', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035522', N'Spider Lady Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'40', N'6000', N'1', N'3', N'2', N'3000', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035523', N'Baron Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'43', N'6000', N'1', N'3', N'2', N'3000', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035524', N'Joker Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'44', N'6000', N'1', N'3', N'2', N'3000', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035525', N'Chimera Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'46', N'6000', N'1', N'3', N'2', N'3000', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035526', N'Conjugo Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'48', N'6000', N'1', N'3', N'2', N'3000', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035527', N'Dire Knight Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'49', N'6000', N'1', N'3', N'2', N'3000', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035528', N'Sparkle Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'51', N'6000', N'1', N'3', N'2', N'3000', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035529', N'Demon King Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'52', N'6000', N'1', N'3', N'2', N'3000', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035530', N'Mad Latiel Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'53', N'6000', N'1', N'3', N'2', N'3000', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035531', N'Gagarth Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'54', N'6000', N'1', N'3', N'2', N'3000', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214035532', N'Aurosiac Delicate Greaves', N'1', N'1', N'3', N'3', N'5', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044001', N'Rennzeug Greaves', N'1', N'1', N'5', N'4', N'4', N'10', N'5500', N'1', N'3', N'2', N'5700', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044002', N'Stechzeug Greaves', N'1', N'1', N'5', N'4', N'4', N'15', N'5500', N'1', N'3', N'2', N'5700', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044003', N'Kolbenturnier Greaves', N'1', N'1', N'5', N'4', N'4', N'20', N'5500', N'1', N'3', N'2', N'5700', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044004', N'Behterets Greaves', N'1', N'1', N'5', N'4', N'4', N'25', N'5500', N'1', N'3', N'2', N'5700', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044005', N'Yushman Greaves', N'1', N'1', N'5', N'4', N'4', N'30', N'5500', N'1', N'3', N'2', N'5700', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044006', N'Kalantar Greaves', N'1', N'1', N'5', N'4', N'4', N'35', N'5500', N'1', N'3', N'2', N'5700', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044007', N'Coriaceus Greaves', N'1', N'1', N'5', N'4', N'4', N'40', N'5500', N'1', N'3', N'2', N'5700', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044008', N'Zen Greaves', N'1', N'1', N'5', N'4', N'4', N'45', N'5500', N'1', N'3', N'2', N'5700', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044009', N'Perfect Greaves', N'1', N'1', N'5', N'4', N'4', N'50', N'5500', N'1', N'3', N'2', N'5700', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214044010', N'Expert Dual Prop Battle Greaves', N'1', N'1', N'5', N'4', N'4', N'55', N'5500', N'1', N'3', N'2', N'5700', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045001', N'Gloves Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'9', N'6000', N'1', N'3', N'2', N'5700', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045002', N'Armored Butcher Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'10', N'6000', N'1', N'3', N'2', N'5700', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045003', N'Boozatron Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'12', N'6000', N'1', N'3', N'2', N'5700', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045004', N'Hammer Butcher Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'14', N'6000', N'1', N'3', N'2', N'5700', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045005', N'Cursed Cataphract Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'15', N'6000', N'1', N'3', N'2', N'5700', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045006', N'Giant Mole Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'17', N'6000', N'1', N'3', N'2', N'5700', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045007', N'Dewey Decimator Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'19', N'6000', N'1', N'3', N'2', N'5700', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045008', N'Cataphract Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'21', N'6000', N'1', N'3', N'2', N'5700', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045009', N'Crimson Gloves Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'22', N'6000', N'1', N'3', N'2', N'5700', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045010', N'Minotauros Lord Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'23', N'6000', N'1', N'3', N'2', N'5700', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045011', N'Sinful Seraph Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'23', N'6000', N'1', N'3', N'2', N'5700', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045012', N'Massive Butcher Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'28', N'6000', N'1', N'3', N'2', N'5700', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045013', N'Haken Platina Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'26', N'6000', N'1', N'3', N'2', N'5700', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045014', N'Viper Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'31', N'6000', N'1', N'3', N'2', N'5700', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045015', N'Stone Golem Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'29', N'6000', N'1', N'3', N'2', N'5700', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045016', N'Massive Mole Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'34', N'6000', N'1', N'3', N'2', N'5700', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045017', N'Goliath Gorilla Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'33', N'6000', N'1', N'3', N'2', N'5700', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045018', N'Giant Rafflesia Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'38', N'6000', N'1', N'3', N'2', N'5700', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045019', N'Cyborg Gorilla Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'34', N'6000', N'1', N'3', N'2', N'5700', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045020', N'Sand Golem Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'36', N'6000', N'1', N'3', N'2', N'5700', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045021', N'Giant Sandworm Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'39', N'6000', N'1', N'3', N'2', N'5700', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045022', N'Spider Lady Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'40', N'6000', N'1', N'3', N'2', N'5700', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045023', N'Baron Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'43', N'6000', N'1', N'3', N'2', N'5700', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045024', N'Joker Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'44', N'6000', N'1', N'3', N'2', N'5700', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045025', N'Chimera Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'46', N'6000', N'1', N'3', N'2', N'5700', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045026', N'Conjugo Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'48', N'6000', N'1', N'3', N'2', N'5700', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045027', N'Dire Knight Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'49', N'6000', N'1', N'3', N'2', N'5700', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045028', N'Sparkle Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'51', N'6000', N'1', N'3', N'2', N'5700', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045029', N'Demon King Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'52', N'6000', N'1', N'3', N'2', N'5700', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045030', N'Mad Latiel Replica Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'53', N'6000', N'1', N'3', N'2', N'5700', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045031', N'Gagarth Replica Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'54', N'6000', N'1', N'3', N'2', N'5700', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045032', N'Aurosiac Replica Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045501', N'Gloves Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'9', N'6000', N'1', N'3', N'2', N'5700', N'750', N'139')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045502', N'Armored Butcher Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'10', N'6000', N'1', N'3', N'2', N'5700', N'860', N'157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045503', N'Boozatron Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'12', N'6000', N'1', N'3', N'2', N'5700', N'1120', N'205')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045504', N'Hammer Butcher Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'14', N'6000', N'1', N'3', N'2', N'5700', N'1400', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045505', N'Cursed Cataphract Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'15', N'6000', N'1', N'3', N'2', N'5700', N'1550', N'286')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045506', N'Giant Mole Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'17', N'6000', N'1', N'3', N'2', N'5700', N'1870', N'344')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045507', N'Dewey Decimator Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'19', N'6000', N'1', N'3', N'2', N'5700', N'2210', N'407')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045508', N'Cataphract Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'21', N'6000', N'1', N'3', N'2', N'5700', N'2590', N'476')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045509', N'Crimson Gloves Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'22', N'6000', N'1', N'3', N'2', N'5700', N'2780', N'509')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045510', N'Minotauros Lord Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'23', N'6000', N'1', N'3', N'2', N'5700', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045511', N'Sinful Seraph Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'23', N'6000', N'1', N'3', N'2', N'5700', N'2990', N'550')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045512', N'Massive Butcher Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'28', N'6000', N'1', N'3', N'2', N'5700', N'4110', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045513', N'Haken Platina Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'26', N'6000', N'1', N'3', N'2', N'5700', N'3640', N'667')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045514', N'Viper Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'31', N'6000', N'1', N'3', N'2', N'5700', N'4860', N'891')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045515', N'Stone Golem Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'29', N'6000', N'1', N'3', N'2', N'5700', N'4350', N'799')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045516', N'Massive Mole Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'34', N'6000', N'1', N'3', N'2', N'5700', N'5570', N'1023')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045517', N'Goliath Gorilla Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'33', N'6000', N'1', N'3', N'2', N'5700', N'5400', N'990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045518', N'Giant Rafflesia Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'38', N'6000', N'1', N'3', N'2', N'5700', N'6850', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045519', N'Cyborg Gorilla Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'34', N'6000', N'1', N'3', N'2', N'5700', N'5670', N'1041')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045520', N'Sand Golem Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'36', N'6000', N'1', N'3', N'2', N'5700', N'6250', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045521', N'Giant Sandworm Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'39', N'6000', N'1', N'3', N'2', N'5700', N'7480', N'1371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045522', N'Spider Lady Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'40', N'6000', N'1', N'3', N'2', N'5700', N'8140', N'1492')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045523', N'Baron Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'43', N'6000', N'1', N'3', N'2', N'5700', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045524', N'Joker Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'44', N'6000', N'1', N'3', N'2', N'5700', N'8980', N'1646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045525', N'Chimera Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'46', N'6000', N'1', N'3', N'2', N'5700', N'11010', N'2020')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045526', N'Conjugo Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'48', N'6000', N'1', N'3', N'2', N'5700', N'10270', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045527', N'Dire Knight Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'49', N'6000', N'1', N'3', N'2', N'5700', N'10650', N'1598')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045528', N'Sparkle Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'51', N'6000', N'1', N'3', N'2', N'5700', N'11420', N'1713')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045529', N'Demon King Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'52', N'6000', N'1', N'3', N'2', N'5700', N'11820', N'1773')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045530', N'Mad Latiel Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'53', N'6000', N'1', N'3', N'2', N'5700', N'12230', N'2018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045531', N'Gagarth Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'54', N'6000', N'1', N'3', N'2', N'5700', N'12640', N'2086')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'214045532', N'Aurosiac Delicate Battle Greaves', N'1', N'1', N'3', N'4', N'5', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311012001', N'Unfinished Monarch Sword', N'1', N'2', N'0', N'5', N'2', N'40', N'7500', N'0', N'3', N'1', N'2200', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311014001', N'Monarch Sword', N'1', N'2', N'0', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311014003', N'Ice Sword', N'1', N'2', N'0', N'5', N'4', N'20', N'500', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311014004', N'Ice Sword', N'1', N'2', N'0', N'5', N'4', N'30', N'500', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311014005', N'Ice Sword', N'1', N'2', N'0', N'5', N'4', N'40', N'500', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311014006', N'Ice Sword', N'1', N'2', N'0', N'5', N'4', N'50', N'500', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015001', N'Absolute Monarch Sword', N'1', N'2', N'0', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015002', N'Brawlers Mirage Sword', N'1', N'2', N'0', N'5', N'5', N'1', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015003', N'Glacial Sword', N'1', N'2', N'0', N'5', N'5', N'20', N'500', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015004', N'Glacial Sword', N'1', N'2', N'0', N'5', N'5', N'30', N'500', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015005', N'Glacial Sword', N'1', N'2', N'0', N'5', N'5', N'40', N'500', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311015006', N'Glacial Sword', N'1', N'2', N'0', N'5', N'5', N'50', N'500', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311022001', N'Unfinished Monarch Slayer', N'1', N'2', N'0', N'6', N'2', N'40', N'7500', N'0', N'3', N'1', N'2200', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311024001', N'Monarch Slayer', N'1', N'2', N'0', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311024003', N'Ice Axe', N'1', N'2', N'0', N'6', N'4', N'20', N'500', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311024004', N'Ice Axe', N'1', N'2', N'0', N'6', N'4', N'30', N'500', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311024005', N'Ice Axe', N'1', N'2', N'0', N'6', N'4', N'40', N'500', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311024006', N'Ice Axe', N'1', N'2', N'0', N'6', N'4', N'50', N'500', N'1', N'3', N'1', N'2200', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025001', N'Absolute Monarch Slayer', N'1', N'2', N'0', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025002', N'Brawlers Mirage Axe', N'1', N'2', N'0', N'6', N'5', N'1', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025003', N'Glacial Axe', N'1', N'2', N'0', N'6', N'5', N'20', N'500', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025004', N'Glacial Axe', N'1', N'2', N'0', N'6', N'5', N'30', N'500', N'1', N'3', N'1', N'2200', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025005', N'Glacial Axe', N'1', N'2', N'0', N'6', N'5', N'40', N'500', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311025006', N'Glacial Axe', N'1', N'2', N'0', N'6', N'5', N'50', N'500', N'1', N'3', N'1', N'2200', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311032001', N'Unfinished Monarch Witch Sword', N'1', N'2', N'0', N'7', N'2', N'40', N'7500', N'0', N'3', N'1', N'2500', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311034001', N'Monarch Witch Sword', N'1', N'2', N'0', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311034003', N'Ice Witch Sword', N'1', N'2', N'0', N'7', N'4', N'20', N'500', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311034004', N'Ice Witch Sword', N'1', N'2', N'0', N'7', N'4', N'30', N'500', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311034005', N'Ice Witch Sword', N'1', N'2', N'0', N'7', N'4', N'40', N'500', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311034006', N'Ice Witch Sword', N'1', N'2', N'0', N'7', N'4', N'50', N'500', N'1', N'3', N'1', N'2500', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035001', N'Absolute Monarch Witch Sword', N'1', N'2', N'0', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035002', N'Brawlers Mirage Witch Sword', N'1', N'2', N'0', N'7', N'5', N'1', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035003', N'Glacial Witch Sword', N'1', N'2', N'0', N'7', N'5', N'20', N'500', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035004', N'Glacial Witch Sword', N'1', N'2', N'0', N'7', N'5', N'30', N'500', N'1', N'3', N'1', N'2500', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035005', N'Glacial Witch Sword', N'1', N'2', N'0', N'7', N'5', N'40', N'500', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311035006', N'Glacial Witch Sword', N'1', N'2', N'0', N'7', N'5', N'50', N'500', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311042001', N'Unfinished Monarch Popular Scythe', N'1', N'2', N'0', N'8', N'2', N'40', N'7500', N'0', N'3', N'1', N'2600', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311044001', N'Monarch Popular Scythe', N'1', N'2', N'0', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311044003', N'Ice Scythe', N'1', N'2', N'0', N'8', N'4', N'20', N'500', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311044004', N'Ice Scythe', N'1', N'2', N'0', N'8', N'4', N'30', N'500', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311044005', N'Ice Scythe', N'1', N'2', N'0', N'8', N'4', N'40', N'500', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311044006', N'Ice Scythe', N'1', N'2', N'0', N'8', N'4', N'50', N'500', N'1', N'3', N'1', N'2600', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045001', N'Absolute Monarch Popular Scythe', N'1', N'2', N'0', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045002', N'Brawlers Mirage Scythe', N'1', N'2', N'0', N'8', N'5', N'1', N'9000', N'1', N'3', N'1', N'2600', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045003', N'Glacial Scythe', N'1', N'2', N'0', N'8', N'5', N'20', N'500', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045004', N'Glacial Scythe', N'1', N'2', N'0', N'8', N'5', N'30', N'500', N'1', N'3', N'1', N'2600', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045005', N'Glacial Scythe', N'1', N'2', N'0', N'8', N'5', N'40', N'500', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311045006', N'Glacial Scythe', N'1', N'2', N'0', N'8', N'5', N'50', N'500', N'1', N'3', N'1', N'2600', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311052001', N'Unfinished Monarch Fist', N'1', N'2', N'0', N'9', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311054001', N'Monarch Fist', N'1', N'2', N'0', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311054003', N'Ice Fist', N'1', N'2', N'0', N'9', N'4', N'20', N'500', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311054004', N'Ice Fist', N'1', N'2', N'0', N'9', N'4', N'30', N'500', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311054005', N'Ice Fist', N'1', N'2', N'0', N'9', N'4', N'40', N'500', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311054006', N'Ice Fist', N'1', N'2', N'0', N'9', N'4', N'50', N'500', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055001', N'Absolute Monarch Fist', N'1', N'2', N'0', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055002', N'Brawlers Mirage Gauntlets', N'1', N'2', N'0', N'9', N'5', N'1', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055003', N'Glacial Fist', N'1', N'2', N'0', N'9', N'5', N'20', N'500', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055004', N'Glacial Fist', N'1', N'2', N'0', N'9', N'5', N'30', N'500', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055005', N'Glacial Fist', N'1', N'2', N'0', N'9', N'5', N'40', N'500', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311055006', N'Glacial Fist', N'1', N'2', N'0', N'9', N'5', N'50', N'500', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311062001', N'Unfinished Monarch Claw', N'1', N'2', N'0', N'10', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311064001', N'Monarch Claw', N'1', N'2', N'0', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311064003', N'Ice Claw', N'1', N'2', N'0', N'10', N'4', N'20', N'500', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311064004', N'Ice Claw', N'1', N'2', N'0', N'10', N'4', N'30', N'500', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311064005', N'Ice Claw', N'1', N'2', N'0', N'10', N'4', N'40', N'500', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311064006', N'Ice Claw', N'1', N'2', N'0', N'10', N'4', N'50', N'500', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065001', N'Absolute Monarch Claw', N'1', N'2', N'0', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065002', N'Brawlers Mirage Claw', N'1', N'2', N'0', N'10', N'5', N'1', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065003', N'Glacial Claw', N'1', N'2', N'0', N'10', N'5', N'20', N'500', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065004', N'Glacial Claw', N'1', N'2', N'0', N'10', N'5', N'30', N'500', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065005', N'Glacial Claw', N'1', N'2', N'0', N'10', N'5', N'40', N'500', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311065006', N'Glacial Claw', N'1', N'2', N'0', N'10', N'5', N'50', N'500', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311072001', N'Unfinished Monarch Revolver', N'1', N'2', N'0', N'11', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311074001', N'Monarch Revolver', N'1', N'2', N'0', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311074003', N'Ice Revolver', N'1', N'2', N'0', N'11', N'4', N'20', N'500', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311074004', N'Ice Revolver', N'1', N'2', N'0', N'11', N'4', N'30', N'500', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311074005', N'Ice Revolver', N'1', N'2', N'0', N'11', N'4', N'40', N'500', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311074006', N'Ice Revolver', N'1', N'2', N'0', N'11', N'4', N'50', N'500', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075001', N'Absolute Monarch Revolver', N'1', N'2', N'0', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075002', N'Brawlers Mirage Revolver', N'1', N'2', N'0', N'11', N'5', N'1', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075003', N'Glacial Revolver', N'1', N'2', N'0', N'11', N'5', N'20', N'500', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075004', N'Glacial Revolver', N'1', N'2', N'0', N'11', N'5', N'30', N'500', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075005', N'Glacial Revolver', N'1', N'2', N'0', N'11', N'5', N'40', N'500', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311075006', N'Glacial Revolver', N'1', N'2', N'0', N'11', N'5', N'50', N'500', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311082001', N'Unfinished Monarch Musket', N'1', N'2', N'0', N'12', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311084001', N'Monarch Musket', N'1', N'2', N'0', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311084003', N'Ice Musket', N'1', N'2', N'0', N'12', N'4', N'20', N'500', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311084004', N'Ice Musket', N'1', N'2', N'0', N'12', N'4', N'30', N'500', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311084005', N'Ice Musket', N'1', N'2', N'0', N'12', N'4', N'40', N'500', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311084006', N'Ice Musket', N'1', N'2', N'0', N'12', N'4', N'50', N'500', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085001', N'Absolute Monarch Musket', N'1', N'2', N'0', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085002', N'Brawlers Mirage Musket', N'1', N'2', N'0', N'12', N'5', N'1', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085003', N'Glacial Musket', N'1', N'2', N'0', N'12', N'5', N'20', N'500', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085004', N'Glacial Musket', N'1', N'2', N'0', N'12', N'5', N'30', N'500', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085005', N'Glacial Musket', N'1', N'2', N'0', N'12', N'5', N'40', N'500', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311085006', N'Glacial Musket', N'1', N'2', N'0', N'12', N'5', N'50', N'500', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311092001', N'Unfinished Monarch Twin Swords', N'1', N'2', N'0', N'55', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311094001', N'Monarch Twin Swords', N'1', N'2', N'0', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311094003', N'Ice Twin Sword', N'1', N'2', N'0', N'55', N'4', N'20', N'500', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311094004', N'Ice Twin Sword', N'1', N'2', N'0', N'55', N'4', N'30', N'500', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311094005', N'Ice Twin Sword', N'1', N'2', N'0', N'55', N'4', N'40', N'500', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311094006', N'Ice Twin Sword', N'1', N'2', N'0', N'55', N'4', N'50', N'500', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095001', N'Absolute Monarch Twin Swords', N'1', N'2', N'0', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095002', N'Brawlers Mirage Twin Swords', N'1', N'2', N'0', N'55', N'5', N'1', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095003', N'Glacial Twin Sword', N'1', N'2', N'0', N'55', N'5', N'20', N'500', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095004', N'Glacial Twin Sword', N'1', N'2', N'0', N'55', N'5', N'30', N'500', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095005', N'Glacial Twin Sword', N'1', N'2', N'0', N'55', N'5', N'40', N'500', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311095006', N'Glacial Twin Sword', N'1', N'2', N'0', N'55', N'5', N'50', N'500', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311112001', N'Unfinished Monarch Glaive', N'1', N'2', N'0', N'56', N'2', N'40', N'7500', N'0', N'3', N'1', N'2500', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311114001', N'Monarch Glaive', N'1', N'2', N'0', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311114003', N'Ice Glave', N'1', N'2', N'0', N'56', N'4', N'20', N'500', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311114004', N'Ice Glave', N'1', N'2', N'0', N'56', N'4', N'30', N'500', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311114005', N'Ice Glave', N'1', N'2', N'0', N'56', N'4', N'40', N'500', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311114006', N'Ice Glave', N'1', N'2', N'0', N'56', N'4', N'50', N'500', N'1', N'3', N'1', N'2500', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115001', N'Absolute Monarch Glaive', N'1', N'2', N'0', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115002', N'Brawlers Mirage Glaive', N'1', N'2', N'0', N'56', N'5', N'1', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115003', N'Glacial Glave', N'1', N'2', N'0', N'56', N'5', N'20', N'500', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115004', N'Glacial Glave', N'1', N'2', N'0', N'56', N'5', N'30', N'500', N'1', N'3', N'1', N'2500', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115005', N'Glacial Glave', N'1', N'2', N'0', N'56', N'5', N'40', N'500', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311115006', N'Glacial Glave', N'1', N'2', N'0', N'56', N'5', N'50', N'500', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311132001', N'Unfinished Monarch Demon Hands', N'1', N'2', N'0', N'57', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311134001', N'Monarch Demon Hands', N'1', N'2', N'0', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311134003', N'Ice Heavy Gauntlet', N'1', N'2', N'0', N'57', N'4', N'20', N'500', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311134004', N'Ice Heavy Gauntlet', N'1', N'2', N'0', N'57', N'4', N'30', N'500', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311134005', N'Ice Heavy Gauntlet', N'1', N'2', N'0', N'57', N'4', N'40', N'500', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311134006', N'Ice Heavy Gauntlet', N'1', N'2', N'0', N'57', N'4', N'50', N'500', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135001', N'Absolute Monarch Demon Hands', N'1', N'2', N'0', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135002', N'Brawlers Mirage Demon Hands', N'1', N'2', N'0', N'57', N'5', N'1', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135003', N'Glacial Heavy Gauntlet', N'1', N'2', N'0', N'57', N'5', N'20', N'500', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135004', N'Glacial Heavy Gauntlet', N'1', N'2', N'0', N'57', N'5', N'30', N'500', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135005', N'Glacial Heavy Gauntlet', N'1', N'2', N'0', N'57', N'5', N'40', N'500', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311135006', N'Glacial Heavy Gauntlet', N'1', N'2', N'0', N'57', N'5', N'50', N'500', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311152001', N'Unfinished Monarch Weapon Bag', N'1', N'2', N'0', N'58', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311154001', N'Monarch Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311154003', N'Ice Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'20', N'500', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311154004', N'Ice Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'30', N'500', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311154005', N'Ice Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'40', N'500', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311154006', N'Ice Weapon Bag', N'1', N'2', N'0', N'58', N'4', N'50', N'500', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155001', N'Absolute Monarch Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155002', N'Brawlers Mirage Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'1', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155003', N'Glacial Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'20', N'500', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155004', N'Glacial Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'30', N'500', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155005', N'Glacial Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'40', N'500', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'311155006', N'Glacial Weapon Bag', N'1', N'2', N'0', N'58', N'5', N'50', N'500', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312014001', N'Practice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'24', N'6000', N'1', N'3', N'2', N'1400', N'3260', N'537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312014003', N'Ice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'1400', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312014004', N'Ice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312014005', N'Ice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'1400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312014006', N'Ice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'1400', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312015002', N'Brawlers Mirage Robe', N'1', N'2', N'0', N'1', N'5', N'1', N'6500', N'1', N'3', N'2', N'1400', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312015003', N'Glacial Robe', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312015004', N'Glacial Robe', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'1400', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312015005', N'Glacial Robe', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312015006', N'Glacial Robe', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'1400', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312016104', N'Mighty Lavished Robe', N'1', N'2', N'0', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312024001', N'Practice Leather Mail', N'1', N'2', N'0', N'2', N'4', N'24', N'6000', N'1', N'3', N'2', N'1900', N'3260', N'537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312024003', N'Ice Leather Mail', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'1900', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312024004', N'Ice Leather Mail', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312024005', N'Ice Leather Mail', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'1900', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312024006', N'Ice Leather Mail', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'1900', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312025002', N'Brawlers Mirage Leather Armor', N'1', N'2', N'0', N'2', N'5', N'1', N'6500', N'1', N'3', N'2', N'1900', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312025003', N'Glacial Leather Armor', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312025004', N'Glacial Leather Armor', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'1900', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312025005', N'Glacial Leather Armor', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312025006', N'Glacial Leather Armor', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'1900', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312026104', N'Mighty Elodi Leather Armor', N'1', N'2', N'0', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312034001', N'Practice Chain Cuirass', N'1', N'2', N'0', N'3', N'4', N'24', N'6000', N'1', N'3', N'2', N'3000', N'3260', N'537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312034003', N'Ice Chain Mail', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'3000', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312034004', N'Ice Chain Mail', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312034005', N'Ice Chain Mail', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'3000', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312034006', N'Ice Chain Mail', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'3000', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312035002', N'Brawlers Mirage Chain Mail', N'1', N'2', N'0', N'3', N'5', N'1', N'6500', N'1', N'3', N'2', N'3000', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312035003', N'Glacial Chain Mail', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312035004', N'Glacial Chain Mail', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'3000', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312035005', N'Glacial Chain Mail', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312035006', N'Glacial Chain Mail', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'3000', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312036104', N'Mighty Hinch Chain Mail', N'1', N'2', N'0', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312044001', N'Practice Plate Armor', N'1', N'2', N'0', N'4', N'4', N'24', N'6000', N'1', N'3', N'2', N'5700', N'3260', N'537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312044003', N'Ice Plate Armor', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'5700', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312044004', N'Ice Plate Armor', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312044005', N'Ice Plate Armor', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'5700', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312044006', N'Ice Plate Armor', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'5700', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312045002', N'Brawlers Mirage War Plate', N'1', N'2', N'0', N'4', N'5', N'1', N'6500', N'1', N'3', N'2', N'5700', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312045003', N'Glacial War Plate', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312045004', N'Glacial War Plate', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'5700', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312045005', N'Glacial War Plate', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312045006', N'Glacial War Plate', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'5700', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'312046104', N'Mighty Banded Plate', N'1', N'2', N'0', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313014001', N'Practice Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'24', N'3400', N'1', N'3', N'2', N'900', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313014003', N'Ice Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313014004', N'Ice Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'900', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313014005', N'Ice Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313014006', N'Ice Fabric Hood', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313015002', N'Brawlers Mirage Hood', N'1', N'2', N'0', N'1', N'5', N'1', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313015003', N'Glacial Hood', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313015004', N'Glacial Hood', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313015005', N'Glacial Hood', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313015006', N'Glacial Hood', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313016104', N'Mighty Lavished Hood', N'1', N'2', N'0', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313024001', N'Practice Leather Helmet', N'1', N'2', N'0', N'2', N'4', N'24', N'3400', N'1', N'3', N'2', N'900', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313024003', N'Ice Leather Cap', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313024004', N'Ice Leather Cap', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'900', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313024005', N'Ice Leather Cap', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313024006', N'Ice Leather Cap', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313025002', N'Brawlers Mirage Leather Cap', N'1', N'2', N'0', N'2', N'5', N'1', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313025003', N'Glacial Leather Cap', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313025004', N'Glacial Leather Cap', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313025005', N'Glacial Leather Cap', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313025006', N'Glacial Leather Cap', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313026104', N'Mighty Elodi Leather Cap', N'1', N'2', N'0', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'1200', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313034001', N'Practice Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'24', N'3400', N'1', N'3', N'2', N'1800', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313034003', N'Ice Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'1800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313034004', N'Ice Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'1800', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313034005', N'Ice Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'1800', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313034006', N'Ice Chain Helmet', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'1800', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313035002', N'Brawlers Mirage Chain Helm', N'1', N'2', N'0', N'3', N'5', N'1', N'3600', N'1', N'3', N'2', N'1800', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313035003', N'Glacial Chain Helm', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313035004', N'Glacial Chain Helm', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'1800', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313035005', N'Glacial Chain Helm', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'1800', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313035006', N'Glacial Chain Helm', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'1800', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313036104', N'Mighty Hinch Helm', N'1', N'2', N'0', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313044001', N'Practice Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'24', N'3400', N'1', N'3', N'2', N'3400', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313044003', N'Ice Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'3400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313044004', N'Ice Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'3400', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313044005', N'Ice Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'3400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313044006', N'Ice Plate Helmet', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'3400', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313045002', N'Brawlers Mirage War Helm', N'1', N'2', N'0', N'4', N'5', N'1', N'3600', N'1', N'3', N'2', N'3400', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313045003', N'Glacial War Helm', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313045004', N'Glacial War Helm', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'3400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313045005', N'Glacial War Helm', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'3400', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313045006', N'Glacial War Helm', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'3400', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'313046104', N'Mighty Banded Helm', N'1', N'2', N'0', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314014001', N'Practice Fabric Robe', N'1', N'2', N'0', N'1', N'4', N'24', N'5500', N'1', N'3', N'2', N'1100', N'3040', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314014003', N'Ice Fabric Leggings', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314014004', N'Ice Fabric Leggings', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314014005', N'Ice Fabric Leggings', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314014006', N'Ice Fabric Leggings', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'1100', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314015002', N'Brawlers Mirage Leggings', N'1', N'2', N'0', N'1', N'5', N'1', N'6000', N'1', N'3', N'2', N'1100', N'9170', N'1514')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314015003', N'Glacial Leggings', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314015004', N'Glacial Leggings', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'1100', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314015005', N'Glacial Leggings', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'1100', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314015006', N'Glacial Leggings', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'1100', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314016104', N'Mighty Lavished Leggings', N'1', N'2', N'0', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314024001', N'Practice Leather Pants ', N'1', N'2', N'0', N'2', N'4', N'24', N'5500', N'1', N'3', N'2', N'1600', N'3040', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314024003', N'Ice Leather Leggings', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'1600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314024004', N'Ice Leather Leggings', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'1600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314024005', N'Ice Leather Leggings', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'1600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314024006', N'Ice Leather Leggings', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'1600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314025002', N'Brawlers Mirage Leather Leggings', N'1', N'2', N'0', N'2', N'5', N'1', N'6000', N'1', N'3', N'2', N'1600', N'9170', N'1514')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314025003', N'Glacial Leather Leggings', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314025004', N'Glacial Leather Leggings', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'1600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314025005', N'Glacial Leather Leggings', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'1600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314025006', N'Glacial Leather Leggings', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'1600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314026104', N'Mighty Elodi Leather Leggings', N'1', N'2', N'0', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314034001', N'Practice Chain Puttees', N'1', N'2', N'0', N'3', N'4', N'24', N'5500', N'1', N'3', N'2', N'2400', N'3040', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314034003', N'Ice Chain Gaiters', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314034004', N'Ice Chain Gaiters', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314034005', N'Ice Chain Gaiters', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314034006', N'Ice Chain Gaiters', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314035002', N'Brawlers Mirage Chain Greave', N'1', N'2', N'0', N'3', N'5', N'1', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1514')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314035003', N'Glacial Chain Greaves', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314035004', N'Glacial Chain Greaves', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314035005', N'Glacial Chain Greaves', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314035006', N'Glacial Chain Greaves', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314036104', N'Mighty Hinch Greave', N'1', N'2', N'0', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314044001', N'Practice Plate Puttees', N'1', N'2', N'0', N'4', N'4', N'24', N'5500', N'1', N'3', N'2', N'2400', N'3040', N'501')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314044003', N'Ice Plate Gaiters', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314044004', N'Ice Plate Gaiters', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314044005', N'Ice Plate Gaiters', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314044006', N'Ice Plate Gaiters', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314045002', N'Brawlers Mirage War Greave', N'1', N'2', N'0', N'4', N'5', N'1', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1514')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314045003', N'Glacial War Greaves', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314045004', N'Glacial War Greaves', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314045005', N'Glacial War Greaves', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314045006', N'Glacial War Greaves', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'314046104', N'Mighty Banded Greave', N'1', N'2', N'0', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'4600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315014001', N'Practice Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'24', N'4400', N'1', N'3', N'2', N'600', N'2600', N'429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315014003', N'Ice Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'600', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315014004', N'Ice Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'600', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315014005', N'Ice Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'600', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315014006', N'Ice Fabric Shoes', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'600', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315015002', N'Brawlers Mirage Shoes', N'1', N'2', N'0', N'1', N'5', N'1', N'4600', N'1', N'3', N'2', N'600', N'7860', N'1297')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315015003', N'Glacial Shoes', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315015004', N'Glacial Shoes', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'600', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315015005', N'Glacial Shoes', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'600', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315015006', N'Glacial Shoes', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'600', N'9460', N'1561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315016104', N'Mighty Lavished Shoes', N'1', N'2', N'0', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315024001', N'Practice Leather Boots', N'1', N'2', N'0', N'2', N'4', N'24', N'4400', N'1', N'3', N'2', N'800', N'2600', N'429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315024003', N'Ice Leather Boots', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'800', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315024004', N'Ice Leather Boots', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'800', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315024005', N'Ice Leather Boots', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'800', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315024006', N'Ice Leather Boots', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'800', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315025002', N'Brawlers Mirage Leather Shoes', N'1', N'2', N'0', N'2', N'5', N'1', N'4600', N'1', N'3', N'2', N'800', N'7860', N'1297')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315025003', N'Glacial Leather Shoes', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315025004', N'Glacial Leather Shoes', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'800', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315025005', N'Glacial Leather Shoes', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'800', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315025006', N'Glacial Leather Shoes', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'800', N'9460', N'1561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315026104', N'Mighty Elodi Leather Shoes', N'1', N'2', N'0', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'800', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315034001', N'Practice Chain Boots', N'1', N'2', N'0', N'3', N'4', N'24', N'4400', N'1', N'3', N'2', N'1200', N'2600', N'429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315034003', N'Ice Chain Boots', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'1200', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315034004', N'Ice Chain Boots', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'1200', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315034005', N'Ice Chain Boots', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'1200', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315034006', N'Ice Chain Boots', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'1200', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315035002', N'Brawlers Mirage Chain Boots', N'1', N'2', N'0', N'3', N'5', N'1', N'4600', N'1', N'3', N'2', N'1200', N'7860', N'1297')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315035003', N'Glacial Chain Boots', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'1200', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315035004', N'Glacial Chain Boots', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'1200', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315035005', N'Glacial Chain Boots', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'1200', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315035006', N'Glacial Chain Boots', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'1200', N'9460', N'1561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315036104', N'Mighty Hinch Boots', N'1', N'2', N'0', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'1200', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315044001', N'Practice Plate Boots', N'1', N'2', N'0', N'4', N'4', N'24', N'4400', N'1', N'3', N'2', N'2300', N'2600', N'429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315044003', N'Ice Plate Boots', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'2300', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315044004', N'Ice Plate Boots', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'2300', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315044005', N'Ice Plate Boots', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'2300', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315044006', N'Ice Plate Boots', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'2300', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315045002', N'Brawlers Mirage War Boots', N'1', N'2', N'0', N'4', N'5', N'1', N'4600', N'1', N'3', N'2', N'2300', N'7860', N'1297')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315045003', N'Glacial War Boots', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'2300', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315045004', N'Glacial War Boots', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'2300', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315045005', N'Glacial War Boots', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'2300', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315045006', N'Glacial War Boots', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'2300', N'9460', N'1561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'315046104', N'Mighty Banded War Boots', N'1', N'2', N'0', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'2300', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316014001', N'Practice Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'24', N'3400', N'1', N'3', N'2', N'200', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316014003', N'Ice Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'200', N'1460', N'241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316014004', N'Ice Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'200', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316014005', N'Ice Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'200', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316014006', N'Ice Fabric Belt', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'200', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316015002', N'Brawlers Mirage Belt', N'1', N'2', N'0', N'1', N'5', N'1', N'3600', N'1', N'3', N'2', N'200', N'5900', N'974')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316015003', N'Glacial Belt', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316015004', N'Glacial Belt', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'200', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316015005', N'Glacial Belt', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316015006', N'Glacial Belt', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'200', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316016104', N'Mighty Lavished Belt', N'1', N'2', N'0', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'200', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316024001', N'Practice Leather Belt', N'1', N'2', N'0', N'2', N'4', N'24', N'3400', N'1', N'3', N'2', N'300', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316024003', N'Ice Leather Belt', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'300', N'1460', N'241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316024004', N'Ice Leather Belt', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'300', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316024005', N'Ice Leather Belt', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'300', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316024006', N'Ice Leather Belt', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'300', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316025002', N'Brawlers Mirage Leather Belt', N'1', N'2', N'0', N'2', N'5', N'1', N'3600', N'1', N'3', N'2', N'200', N'5900', N'974')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316025003', N'Glacial Leather Belt', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316025004', N'Glacial Leather Belt', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'200', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316025005', N'Glacial Leather Belt', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316025006', N'Glacial Leather Belt', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'200', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316026104', N'Mighty Elodi Leather Belt', N'1', N'2', N'0', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'300', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316034001', N'Practice Chain Belt', N'1', N'2', N'0', N'3', N'4', N'24', N'3400', N'1', N'3', N'2', N'500', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316034003', N'Ice Chain Belt', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'500', N'1460', N'241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316034004', N'Ice Chain Belt', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'500', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316034005', N'Ice Chain Belt', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'500', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316034006', N'Ice Chain Belt', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'500', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316035002', N'Brawlers Mirage Chain Belt', N'1', N'2', N'0', N'3', N'5', N'1', N'3600', N'1', N'3', N'2', N'300', N'5900', N'974')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316035003', N'Glacial Chain Belt', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316035004', N'Glacial Chain Belt', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316035005', N'Glacial Chain Belt', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'300', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316035006', N'Glacial Chain Belt', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'300', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316036104', N'Mighty Hinch Chain Belt', N'1', N'2', N'0', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'500', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316044001', N'Practice Plate Belt', N'1', N'2', N'0', N'4', N'4', N'24', N'3400', N'1', N'3', N'2', N'900', N'1960', N'323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316044003', N'Ice Plate Belt', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'900', N'1460', N'241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316044004', N'Ice Plate Belt', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'900', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316044005', N'Ice Plate Belt', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'900', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316044006', N'Ice Plate Belt', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'900', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316045002', N'Brawlers Mirage War Belt', N'1', N'2', N'0', N'4', N'5', N'1', N'3600', N'1', N'3', N'2', N'500', N'5900', N'974')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316045003', N'Glacial War Belt', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316045004', N'Glacial War Belt', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'500', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316045005', N'Glacial War Belt', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'500', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316045006', N'Glacial War Belt', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'500', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'316046104', N'Mighty Banded War Belt', N'1', N'2', N'0', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012001', N'Novice Onyx Pendant', N'1', N'2', N'0', N'17', N'2', N'20', N'0', N'0', N'2', N'0', N'400', N'2910', N'480')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012002', N'Novice Blazing Pendant', N'1', N'2', N'0', N'17', N'2', N'25', N'0', N'0', N'2', N'0', N'400', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012003', N'Novice Amber Pendant', N'1', N'2', N'0', N'17', N'2', N'30', N'0', N'0', N'2', N'0', N'400', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012004', N'Novice Serpentine Pendant', N'1', N'2', N'0', N'17', N'2', N'35', N'0', N'0', N'2', N'0', N'400', N'7230', N'1193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012005', N'Novice Inferno Pendant', N'1', N'2', N'0', N'17', N'2', N'40', N'0', N'0', N'2', N'0', N'400', N'9090', N'1500')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012006', N'Novice Wise Pendant', N'1', N'2', N'0', N'17', N'2', N'45', N'0', N'0', N'2', N'0', N'400', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012007', N'Novice Nova Pendant', N'1', N'2', N'0', N'17', N'2', N'50', N'0', N'0', N'2', N'0', N'400', N'13400', N'2211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012008', N'Novice Star-stone Pendant', N'1', N'2', N'0', N'17', N'2', N'55', N'0', N'0', N'2', N'0', N'400', N'15860', N'2616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317012009', N'Novice Dark Slave Pendant', N'1', N'2', N'0', N'17', N'2', N'60', N'0', N'0', N'2', N'0', N'400', N'18520', N'3055')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014001', N'Novice Onyx Pendant', N'1', N'2', N'0', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014002', N'Novice Blazing Pendant', N'1', N'2', N'0', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'400', N'4640', N'765')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014003', N'Novice Amber Pendant', N'1', N'2', N'0', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'400', N'6250', N'1031')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014004', N'Novice Serpentine Pendant', N'1', N'2', N'0', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'400', N'8080', N'1333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014005', N'Novice Inferno Pendant', N'1', N'2', N'0', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'400', N'10160', N'1676')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014006', N'Novice Wise Pendant', N'1', N'2', N'0', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'400', N'12450', N'2054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014007', N'Novice Nova Pendant', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'400', N'14970', N'2470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014008', N'Novice Star-stone Pendant', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'400', N'17730', N'2926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014009', N'Novice Dark Slave Pendant', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'400', N'20700', N'3415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014105', N'Amazing Pendant', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'400', N'10160', N'1676')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014106', N'Fatal Shiner Pendant', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'400', N'14970', N'2246')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014107', N'Forked Shining Pendant', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'400', N'19780', N'2816')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014108', N'Fatal Shiner Pendant', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'400', N'24590', N'3386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317014109', N'Fatal Shiner Pendant', N'1', N'2', N'0', N'17', N'4', N'65', N'0', N'0', N'2', N'0', N'400', N'29400', N'3956')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015001', N'Novice Ice Amulet', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'400', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015002', N'Novice Lightning Amulet', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'400', N'6580', N'1085')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015003', N'Novice Fire Amulet', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'400', N'8510', N'1404')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015004', N'Novice Magic Amulet', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'400', N'10690', N'1764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015005', N'Novice Silver Amulet', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'400', N'13100', N'2161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015006', N'Novice Jasper Amulet', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015007', N'Novice Shining Amulet', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'400', N'18660', N'3078')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015008', N'Novice Opal Amulet', N'1', N'2', N'0', N'17', N'5', N'60', N'0', N'0', N'3', N'0', N'400', N'21790', N'3595')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015009', N'Mirage Amulet', N'1', N'2', N'0', N'17', N'5', N'1', N'0', N'0', N'0', N'0', N'400', N'15760', N'2364')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015104', N'Confounding Amulet', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'400', N'10690', N'1764')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015105', N'Fatal Evening Star Emulet', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2364')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015106', N'Forked Evening Star Amulet', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'400', N'20830', N'2964')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015107', N'Fatal Evening Star Emulet', N'1', N'2', N'0', N'17', N'5', N'60', N'0', N'0', N'3', N'0', N'400', N'25900', N'3564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015108', N'Fatal Evening Star Emulet', N'1', N'2', N'0', N'17', N'5', N'65', N'0', N'0', N'3', N'0', N'400', N'30970', N'4164')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015501', N'Blind Warrior Necklace', N'1', N'2', N'0', N'17', N'5', N'20', N'0', N'0', N'3', N'0', N'400', N'3420', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015502', N'Luthmid Necklace', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'400', N'4880', N'732')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015503', N'Black Shine Necklace', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'400', N'6580', N'987')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015504', N'Rusty Nail Necklace', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'400', N'8510', N'1277')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015505', N'Eyelet Chain Necklace', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'400', N'10690', N'1604')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015506', N'Cruelism Necklace', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'400', N'13100', N'1965')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317015507', N'Lucious Necklace', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'400', N'15760', N'2364')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016001', N'Novice Crystal Necklace', N'1', N'2', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'400', N'3590', N'592')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016002', N'Novice Iris Necklace', N'1', N'2', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'400', N'5120', N'844')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016003', N'Novice Enokian Necklace', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'400', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016004', N'Novice Oblivion Necklace', N'1', N'2', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'400', N'8940', N'1475')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016005', N'Novice Lapis Necklace', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'400', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016006', N'Novice Vladimir Necklace', N'1', N'2', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'400', N'13760', N'2270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016007', N'Novice Lunaris Necklace', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2731')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016008', N'Novice Aquamarine Necklace', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'400', N'19590', N'3232')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016105', N'Perplexing Necklace', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'400', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016106', N'Fatal Diana Necklace', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016107', N'Forked Diamond Necklace', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'400', N'21880', N'3115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016108', N'Fatal Diana Necklace', N'1', N'2', N'0', N'17', N'6', N'60', N'0', N'0', N'3', N'0', N'400', N'27210', N'3747')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016109', N'Fatal Diana Necklace', N'1', N'2', N'0', N'17', N'6', N'65', N'0', N'0', N'3', N'0', N'400', N'32540', N'4379')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016501', N'Aris Vendel Necklace', N'1', N'2', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'400', N'3590', N'539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016502', N'Beloved Feel Necklace', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'400', N'6910', N'1037')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016503', N'Poison Mania Necklace', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'400', N'11220', N'1683')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'317016504', N'Alistar Crowley Necklace', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'400', N'16550', N'2483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012001', N'Novice Onyx Earrings', N'1', N'2', N'0', N'17', N'2', N'20', N'0', N'0', N'2', N'0', N'200', N'2730', N'451')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012002', N'Novice Blaze Earrings', N'1', N'2', N'0', N'17', N'2', N'25', N'0', N'0', N'2', N'0', N'200', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012003', N'Novice Amber Earrings', N'1', N'2', N'0', N'17', N'2', N'30', N'0', N'0', N'2', N'0', N'200', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012004', N'Novice Serpentine Earrings', N'1', N'2', N'0', N'17', N'2', N'35', N'0', N'0', N'2', N'0', N'200', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012005', N'Novice Inferno Earrings', N'1', N'2', N'0', N'17', N'2', N'40', N'0', N'0', N'2', N'0', N'200', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012006', N'Novice Wise Earrings', N'1', N'2', N'0', N'17', N'2', N'45', N'0', N'0', N'2', N'0', N'200', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012007', N'Novice Nova Earrings', N'1', N'2', N'0', N'17', N'2', N'50', N'0', N'0', N'2', N'0', N'200', N'12560', N'2072')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012008', N'Novice Star-stone Earrings', N'1', N'2', N'0', N'17', N'2', N'55', N'0', N'0', N'2', N'0', N'200', N'14870', N'2454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318012009', N'Novice Dark Slave Earrings', N'1', N'2', N'0', N'17', N'2', N'60', N'0', N'0', N'2', N'0', N'200', N'17370', N'2866')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014001', N'Novice Onyx Earrings', N'1', N'2', N'0', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'200', N'3050', N'503')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014002', N'Novice Blaze Earrings', N'1', N'2', N'0', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'200', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014003', N'Novice Amber Earrings', N'1', N'2', N'0', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014004', N'Novice Serpentine Earrings', N'1', N'2', N'0', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'200', N'7580', N'1250')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014005', N'Novice Inferno Earrings', N'1', N'2', N'0', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'200', N'9520', N'1570')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014006', N'Novice Wise Earrings', N'1', N'2', N'0', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'200', N'11680', N'1927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014007', N'Novice Nova Earrings', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'200', N'14040', N'2316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014008', N'Novice Star-stone Earrings', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'200', N'16620', N'2742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014009', N'Novice Dark Slave Earrings', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'200', N'19410', N'3203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014105', N'Amazing Earring', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'200', N'9520', N'1570')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014106', N'Fatal Shiner Earrings', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'200', N'14040', N'2106')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014107', N'Forked Shining Earrings', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'200', N'18560', N'2642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014108', N'Fatal Shiner Earrings', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'200', N'23080', N'3178')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318014109', N'Fatal Shiner Earrings', N'1', N'2', N'0', N'17', N'4', N'65', N'0', N'0', N'2', N'0', N'200', N'27600', N'3714')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015001', N'Novice Ice Earrings', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'200', N'4580', N'755')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015002', N'Novice Lightning Earrings', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'200', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015003', N'Novice Fire Earrings', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'200', N'7980', N'1316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015004', N'Novice Magic Earrings', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'200', N'10020', N'1653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015005', N'Novice Silver Earrings', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'200', N'12290', N'2028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015006', N'Novice Jasper Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015007', N'Novice Shining Earrings', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'200', N'17490', N'2886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015008', N'Novice Opal Earrings', N'1', N'2', N'0', N'17', N'5', N'60', N'0', N'0', N'3', N'0', N'200', N'20430', N'3371')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015009', N'Mirage Earring', N'1', N'2', N'0', N'17', N'5', N'1', N'0', N'0', N'0', N'0', N'200', N'14780', N'2217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015104', N'Confounding Earring', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'200', N'10020', N'1653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015105', N'Fatal Evening Star Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015106', N'Forked Evening Star Earrings', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'200', N'19540', N'2781')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015107', N'Fatal Evening Star Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'24300', N'3345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015108', N'Fatal Evening Star Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'29060', N'3909')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015501', N'Blind Warrior Earrings', N'1', N'2', N'0', N'17', N'5', N'20', N'0', N'0', N'3', N'0', N'200', N'3210', N'482')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015502', N'Luthmid Earrings', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'200', N'4580', N'687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015503', N'Black Shine Earrings', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'200', N'6170', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015504', N'Rusty Nail Earrings', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'200', N'7980', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015505', N'Eyelet Chain Earrings', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'200', N'10020', N'1503')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015506', N'Cruelism Earrings', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'200', N'12290', N'1844')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318015507', N'Lucious Earrings', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'200', N'14780', N'2217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016001', N'Novice Crystal Earrings', N'1', N'2', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'200', N'3370', N'556')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016002', N'Novice Iris Earrings', N'1', N'2', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016003', N'Novice Enokian Earrings', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'200', N'6480', N'1069')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016004', N'Novice Oblivion Earrings', N'1', N'2', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'200', N'8380', N'1382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016005', N'Novice Lapis Earrings', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'200', N'10520', N'1735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016006', N'Novice Vladimir Earrings', N'1', N'2', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'200', N'12900', N'2128')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016007', N'Novice Lunaris Earrings', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016008', N'Novice Aquamarine Earrings', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'200', N'18360', N'3029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016105', N'Perplexing Earring', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'200', N'10520', N'1735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016106', N'Fatal Diana Earrings', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2328')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016107', N'Forked Diamond Earrings', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'200', N'20520', N'2921')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016108', N'Fatal Diana Earrings', N'1', N'2', N'0', N'17', N'6', N'60', N'0', N'0', N'3', N'0', N'200', N'25520', N'3514')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016109', N'Fatal Diana Earrings', N'1', N'2', N'0', N'17', N'6', N'65', N'0', N'0', N'3', N'0', N'200', N'30520', N'4107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016501', N'Aris Vendel Earrings', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'3370', N'506')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016502', N'Beloved Feel Earrings', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'200', N'6480', N'972')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016503', N'Poison Mania Earrings', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'200', N'10520', N'1578')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'318016504', N'Alistar Crowley Earrings', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'200', N'15520', N'2328')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012001', N'Novice Onyx Ring', N'1', N'2', N'0', N'17', N'2', N'20', N'0', N'0', N'2', N'0', N'300', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012002', N'Novice Blaze Ring', N'1', N'2', N'0', N'17', N'2', N'25', N'0', N'0', N'2', N'0', N'300', N'3630', N'599')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012003', N'Novice Amber Ring', N'1', N'2', N'0', N'17', N'2', N'30', N'0', N'0', N'2', N'0', N'300', N'4890', N'807')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012004', N'Novice Serpentine Ring', N'1', N'2', N'0', N'17', N'2', N'35', N'0', N'0', N'2', N'0', N'300', N'6330', N'1045')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012005', N'Novice Inferno Ring', N'1', N'2', N'0', N'17', N'2', N'40', N'0', N'0', N'2', N'0', N'300', N'7950', N'1312')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012006', N'Novice Wise Ring', N'1', N'2', N'0', N'17', N'2', N'45', N'0', N'0', N'2', N'0', N'300', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012007', N'Novice Nova Ring', N'1', N'2', N'0', N'17', N'2', N'50', N'0', N'0', N'2', N'0', N'300', N'11720', N'1933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012008', N'Novice Star-stone Ring', N'1', N'2', N'0', N'17', N'2', N'55', N'0', N'0', N'2', N'0', N'300', N'13870', N'2289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319012009', N'Novice Dark Slave Ring', N'1', N'2', N'0', N'17', N'2', N'60', N'0', N'0', N'2', N'0', N'300', N'16210', N'2675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014001', N'Novice Onyx Ring', N'1', N'2', N'0', N'17', N'4', N'20', N'0', N'0', N'2', N'0', N'300', N'2850', N'470')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014002', N'Novice Blaze Ring', N'1', N'2', N'0', N'17', N'4', N'25', N'0', N'0', N'2', N'0', N'300', N'4060', N'669')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014003', N'Novice Amber Ring', N'1', N'2', N'0', N'17', N'4', N'30', N'0', N'0', N'2', N'0', N'300', N'5460', N'900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014004', N'Novice Serpentine Ring', N'1', N'2', N'0', N'17', N'4', N'35', N'0', N'0', N'2', N'0', N'300', N'7080', N'1168')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014005', N'Novice Inferno Ring', N'1', N'2', N'0', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'300', N'8880', N'1465')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014006', N'Novice Wise Ring', N'1', N'2', N'0', N'17', N'4', N'45', N'0', N'0', N'2', N'0', N'300', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014007', N'Novice Nova Ring', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'300', N'13100', N'2161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014008', N'Novice Star-stone Ring', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'300', N'15500', N'2557')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014009', N'Novice Dark Slave Ring', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'300', N'18120', N'2989')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014105', N'Amazing Ring', N'1', N'1', N'5', N'17', N'4', N'40', N'0', N'0', N'2', N'0', N'300', N'8880', N'1465')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014106', N'Fatal Shiner Ring', N'1', N'2', N'0', N'17', N'4', N'50', N'0', N'0', N'2', N'0', N'300', N'13100', N'1965')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014107', N'Forked Shining Ring', N'1', N'2', N'0', N'17', N'4', N'55', N'0', N'0', N'2', N'0', N'300', N'17320', N'2465')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014108', N'Fatal Shiner Ring', N'1', N'2', N'0', N'17', N'4', N'60', N'0', N'0', N'2', N'0', N'300', N'21540', N'2965')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319014109', N'Fatal Shiner Ring', N'1', N'2', N'0', N'17', N'4', N'65', N'0', N'0', N'2', N'0', N'300', N'25760', N'3465')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015001', N'Novice Ice Ring', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'300', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015002', N'Novice Lightning Ring', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'300', N'5750', N'949')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015003', N'Novice Fire Ring', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'300', N'7450', N'1229')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015004', N'Novice Magic Ring', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'300', N'9350', N'1543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015005', N'Novice Silver Ring', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'300', N'11470', N'1893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015006', N'Novice Jasper Ring', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2275')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015007', N'Novice Shining Ring', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'300', N'16320', N'2692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015008', N'Novice Opal Ring', N'1', N'2', N'0', N'17', N'5', N'60', N'0', N'0', N'3', N'0', N'300', N'19070', N'3147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015009', N'Mirage Ring', N'1', N'2', N'0', N'17', N'5', N'1', N'0', N'0', N'0', N'0', N'300', N'13790', N'2069')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015104', N'Confounding Ring', N'1', N'1', N'3', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'300', N'9350', N'1543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015105', N'Fatal Evening Star Ring', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2069')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015106', N'Forked Evening Star Ring', N'1', N'2', N'0', N'17', N'5', N'55', N'0', N'0', N'3', N'0', N'300', N'18230', N'2595')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015107', N'Fatal Evening Star Ring', N'1', N'2', N'0', N'17', N'5', N'60', N'0', N'0', N'3', N'0', N'300', N'22670', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015108', N'Fatal Evening Star Ring', N'1', N'2', N'0', N'17', N'5', N'65', N'0', N'0', N'3', N'0', N'300', N'27110', N'3647')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015501', N'Blind Warrior Ring', N'1', N'2', N'0', N'17', N'5', N'20', N'0', N'0', N'3', N'0', N'300', N'3000', N'450')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015502', N'Luthmid Ring', N'1', N'2', N'0', N'17', N'5', N'25', N'0', N'0', N'3', N'0', N'300', N'4270', N'641')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015503', N'Black Shine Ring', N'1', N'2', N'0', N'17', N'5', N'30', N'0', N'0', N'3', N'0', N'300', N'5750', N'863')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015504', N'Rusty Nail Ring', N'1', N'2', N'0', N'17', N'5', N'35', N'0', N'0', N'3', N'0', N'300', N'7450', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015505', N'Eyelet Chain Ring', N'1', N'2', N'0', N'17', N'5', N'40', N'0', N'0', N'3', N'0', N'300', N'9350', N'1403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015506', N'Cruelism Ring', N'1', N'2', N'0', N'17', N'5', N'45', N'0', N'0', N'3', N'0', N'300', N'11470', N'1721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319015507', N'Lucious Ring', N'1', N'2', N'0', N'17', N'5', N'50', N'0', N'0', N'3', N'0', N'300', N'13790', N'2069')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016001', N'Novice Crystal Ring', N'1', N'2', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'300', N'3150', N'520')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016002', N'Novice Iris Ring', N'1', N'2', N'0', N'17', N'6', N'25', N'0', N'0', N'3', N'0', N'300', N'4480', N'739')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016003', N'Novice Enokian Ring', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'300', N'6040', N'996')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016004', N'Novice Oblivion Ring', N'1', N'2', N'0', N'17', N'6', N'35', N'0', N'0', N'3', N'0', N'300', N'7820', N'1290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016005', N'Novice Lapis Ring', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'300', N'9820', N'1620')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016006', N'Novice Vladimir Ring', N'1', N'2', N'0', N'17', N'6', N'45', N'0', N'0', N'3', N'0', N'300', N'12040', N'1986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016007', N'Novice Lunaris Ring', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016008', N'Novice Aquamarine Ring', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'300', N'17140', N'2828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016105', N'Perplexing Ring', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'300', N'9820', N'1620')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016106', N'Fatal Diana Ring', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2172')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016107', N'Forked Diamond Ring', N'1', N'2', N'0', N'17', N'6', N'55', N'0', N'0', N'3', N'0', N'300', N'19140', N'2724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016108', N'Fatal Diana Ring', N'1', N'2', N'0', N'17', N'6', N'60', N'0', N'0', N'3', N'0', N'300', N'23800', N'3276')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016109', N'Fatal Diana Ring', N'1', N'2', N'0', N'17', N'6', N'65', N'0', N'0', N'3', N'0', N'300', N'28460', N'3828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016501', N'Aris Vendel Ring', N'1', N'2', N'0', N'17', N'6', N'20', N'0', N'0', N'3', N'0', N'300', N'3150', N'473')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016502', N'Beloved Feel Ring', N'1', N'2', N'0', N'17', N'6', N'30', N'0', N'0', N'3', N'0', N'300', N'6040', N'906')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016503', N'Poison Mania Ring', N'1', N'2', N'0', N'17', N'6', N'40', N'0', N'0', N'3', N'0', N'300', N'9820', N'1473')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'319016504', N'Alistar Crowley Ring', N'1', N'2', N'0', N'17', N'6', N'50', N'0', N'0', N'3', N'0', N'300', N'14480', N'2172')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320014001', N'Practice Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'24', N'4400', N'1', N'3', N'2', N'300', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320014003', N'Ice Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'20', N'500', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320014004', N'Ice Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'30', N'500', N'1', N'3', N'2', N'300', N'3440', N'568')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320014005', N'Ice Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'40', N'500', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320014006', N'Ice Fabric Gloves', N'1', N'2', N'0', N'1', N'4', N'50', N'500', N'1', N'3', N'2', N'300', N'8240', N'1360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320015002', N'Brawlers Mirage Glove', N'1', N'1', N'0', N'1', N'5', N'1', N'4600', N'1', N'3', N'2', N'900', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320015003', N'Glacial Gloves', N'1', N'2', N'0', N'1', N'5', N'20', N'500', N'1', N'3', N'2', N'900', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320015004', N'Glacial Gloves', N'1', N'2', N'0', N'1', N'5', N'30', N'500', N'1', N'3', N'2', N'900', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320015005', N'Glacial Gloves', N'1', N'2', N'0', N'1', N'5', N'40', N'500', N'1', N'3', N'2', N'900', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320015006', N'Glacial Gloves', N'1', N'2', N'0', N'1', N'5', N'50', N'500', N'1', N'3', N'2', N'900', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320016104', N'Mighty Lavished Glove', N'1', N'2', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'300', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320024001', N'Practice Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'24', N'4400', N'1', N'3', N'2', N'300', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320024003', N'Ice Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'20', N'500', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320024004', N'Ice Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'30', N'500', N'1', N'3', N'2', N'300', N'3440', N'568')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320024005', N'Ice Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'40', N'500', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320024006', N'Ice Leather Gloves', N'1', N'2', N'0', N'2', N'4', N'50', N'500', N'1', N'3', N'2', N'300', N'8240', N'1360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320025002', N'Brawlers Mirage Leather Glove', N'1', N'1', N'0', N'2', N'5', N'1', N'4600', N'1', N'3', N'2', N'300', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320025003', N'Glacial Leather Gloves', N'1', N'2', N'0', N'2', N'5', N'20', N'500', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320025004', N'Glacial Leather Gloves', N'1', N'2', N'0', N'2', N'5', N'30', N'500', N'1', N'3', N'2', N'300', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320025005', N'Glacial Leather Gloves', N'1', N'2', N'0', N'2', N'5', N'40', N'500', N'1', N'3', N'2', N'300', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320025006', N'Glacial Leather Gloves', N'1', N'2', N'0', N'2', N'5', N'50', N'500', N'1', N'3', N'2', N'300', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320026104', N'Mighty Elodi Leather Glove', N'1', N'2', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'400', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320034001', N'Practice Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'24', N'4400', N'1', N'3', N'2', N'300', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320034003', N'Ice Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'20', N'500', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320034004', N'Ice Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'30', N'500', N'1', N'3', N'2', N'300', N'3440', N'568')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320034005', N'Ice Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'40', N'500', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320034006', N'Ice Chain Gloves', N'1', N'2', N'0', N'3', N'4', N'50', N'500', N'1', N'3', N'2', N'300', N'8240', N'1360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320035002', N'Brawlers Mirage Chain Glove', N'1', N'1', N'0', N'3', N'5', N'1', N'4600', N'1', N'3', N'2', N'300', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320035003', N'Glacial Chain Gloves', N'1', N'2', N'0', N'3', N'5', N'20', N'500', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320035004', N'Glacial Chain Gloves', N'1', N'2', N'0', N'3', N'5', N'30', N'500', N'1', N'3', N'2', N'300', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320035005', N'Glacial Chain Gloves', N'1', N'2', N'0', N'3', N'5', N'40', N'500', N'1', N'3', N'2', N'300', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320035006', N'Glacial Chain Gloves', N'1', N'2', N'0', N'3', N'5', N'50', N'500', N'1', N'3', N'2', N'300', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320036104', N'Mighty Hinch Chain Glove', N'1', N'2', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320044001', N'Practice Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'24', N'4400', N'1', N'3', N'2', N'300', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320044003', N'Ice Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'20', N'500', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320044004', N'Ice Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'30', N'500', N'1', N'3', N'2', N'300', N'3440', N'568')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320044005', N'Ice Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'40', N'500', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320044006', N'Ice Plate Gloves', N'1', N'2', N'0', N'4', N'4', N'50', N'500', N'1', N'3', N'2', N'300', N'8240', N'1360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320045002', N'Brawlers Mirage War Glove', N'1', N'1', N'0', N'4', N'5', N'1', N'4600', N'1', N'3', N'2', N'300', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320045003', N'Glacial War Gloves', N'1', N'2', N'0', N'4', N'5', N'20', N'500', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320045004', N'Glacial War Gloves', N'1', N'2', N'0', N'4', N'5', N'30', N'500', N'1', N'3', N'2', N'300', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320045005', N'Glacial War Gloves', N'1', N'2', N'0', N'4', N'5', N'40', N'500', N'1', N'3', N'2', N'300', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320045006', N'Glacial War Gloves', N'1', N'2', N'0', N'4', N'5', N'50', N'500', N'1', N'3', N'2', N'300', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'320046104', N'Mighty Banded War Glove', N'1', N'2', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'1100', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011001', N'Short Sword', N'1', N'0', N'0', N'5', N'1', N'5', N'7000', N'0', N'0', N'1', N'2000', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011002', N'Strong Sword', N'1', N'0', N'0', N'5', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011003', N'Ruben''s War Sword', N'1', N'0', N'0', N'5', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011004', N'Ruben''s Battle Sword', N'1', N'0', N'0', N'5', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011005', N'Ruben''s Strong Sword', N'1', N'0', N'0', N'5', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011006', N'Ruben''s Broad Sword', N'1', N'0', N'0', N'5', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011007', N'Ruben''s Gallant Sword', N'1', N'0', N'0', N'5', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011008', N'Ruben''s Primal Sword', N'1', N'0', N'0', N'5', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011009', N'Ruben''s Gothic Sword', N'1', N'0', N'0', N'5', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011010', N'Ruben''s Bastard Sword', N'1', N'0', N'0', N'5', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011011', N'Ruben''s Valiant Sword', N'1', N'0', N'0', N'5', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011012', N'Ruben''s Shadow Sword', N'1', N'0', N'0', N'5', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011101', N'Ruska''s War Sword', N'1', N'0', N'0', N'5', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011102', N'Ruska''s Battle Sword', N'1', N'0', N'0', N'5', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011103', N'Ruben''s Strong Sword', N'1', N'0', N'0', N'5', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011104', N'Ruben''s Broad Sword', N'1', N'0', N'0', N'5', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011105', N'Ruben''s Gallant Sword', N'1', N'0', N'0', N'5', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011106', N'Ruben''s Primal Sword', N'1', N'0', N'0', N'5', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011107', N'Ruben''s Gothic Sword', N'1', N'0', N'0', N'5', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011108', N'Ruska''s Bastard Sword', N'1', N'0', N'0', N'5', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011109', N'Ruska''s Valiant Sword', N'1', N'0', N'0', N'5', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011110', N'Ruska''s Shadow Sword', N'1', N'0', N'0', N'5', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511011301', N'Gallant Sword', N'1', N'0', N'0', N'5', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021001', N'Steel Axe', N'1', N'0', N'0', N'6', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021002', N'Ruben''s Hand Axe', N'1', N'0', N'0', N'6', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021003', N'Ruben''s Buroba Axe', N'1', N'0', N'0', N'6', N'1', N'15', N'7000', N'0', N'0', N'1', N'2200', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021004', N'Ruben''s Steel Axe', N'1', N'0', N'0', N'6', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021005', N'Ruben''s Two-Handed Axe', N'1', N'0', N'0', N'6', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021006', N'Ruben''s Lokaber Mace', N'1', N'0', N'0', N'6', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021007', N'Ruben''s Gothic Axe', N'1', N'0', N'0', N'6', N'1', N'35', N'7000', N'0', N'0', N'1', N'2200', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021008', N'Ruben''s Bardiche Axe', N'1', N'0', N'0', N'6', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021009', N'Ruben''s Pole Axe', N'1', N'0', N'0', N'6', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021010', N'Ruben''s Tabar Axe', N'1', N'0', N'0', N'6', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021011', N'Ruben''s Battle Axe', N'1', N'0', N'0', N'6', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021101', N'Ruska''s Hand Axe', N'1', N'0', N'0', N'6', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021102', N'Ruska''s Buroba Axe', N'1', N'0', N'0', N'6', N'1', N'15', N'7000', N'0', N'0', N'1', N'2200', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021103', N'Ruben''s Steel Axe', N'1', N'0', N'0', N'6', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021104', N'Ruben''s Two-Handed Axe', N'1', N'0', N'0', N'6', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021105', N'Ruben''s Lokaber Mace', N'1', N'0', N'0', N'6', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021106', N'Ruben''s Gothic Axe', N'1', N'0', N'0', N'6', N'1', N'35', N'7000', N'0', N'0', N'1', N'2200', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021107', N'Ruben''s Bardiche Axe', N'1', N'0', N'0', N'6', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021108', N'Ruska''s Pole Axe', N'1', N'0', N'0', N'6', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021109', N'Ruska''s Tabar Axe', N'1', N'0', N'0', N'6', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021110', N'Ruska''s Battle Axe', N'1', N'0', N'0', N'6', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511021301', N'Lokaber Mace', N'1', N'0', N'0', N'6', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031001', N'Magic Sword', N'1', N'0', N'0', N'7', N'1', N'5', N'7000', N'0', N'0', N'1', N'2500', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031002', N'Druidic Blade', N'1', N'0', N'0', N'7', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031003', N'Ruben''s Crystal Magic Sword', N'1', N'0', N'0', N'7', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031004', N'Ruben''s Spell Sword', N'1', N'0', N'0', N'7', N'1', N'15', N'7000', N'0', N'0', N'1', N'2500', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031005', N'Ruben''s Druidic Blade', N'1', N'0', N'0', N'7', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031006', N'Ruben''s Rune Spell Sword', N'1', N'0', N'0', N'7', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031007', N'Ruben''s Sorceress Sword', N'1', N'0', N'0', N'7', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031008', N'Ruben''s Nether Blade', N'1', N'0', N'0', N'7', N'1', N'35', N'7000', N'0', N'0', N'1', N'2500', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031009', N'Ruben''s Karma Edge', N'1', N'0', N'0', N'7', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031010', N'Ruben''s Witch Sword', N'1', N'0', N'0', N'7', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031011', N'Ruben''s Warlock Sword', N'1', N'0', N'0', N'7', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031012', N'Ruben''s Demonic Witch Sword', N'1', N'0', N'0', N'7', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031101', N'Ruska''s Crystal Magic Sword', N'1', N'0', N'0', N'7', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031102', N'Ruska''s Spell Sword', N'1', N'0', N'0', N'7', N'1', N'15', N'7000', N'0', N'0', N'1', N'2500', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031103', N'Ruben''s Druidic Blade', N'1', N'0', N'0', N'7', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031104', N'Ruben''s Rune Spell Sword', N'1', N'0', N'0', N'7', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031105', N'Ruben''s Sorceress Sword', N'1', N'0', N'0', N'7', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031106', N'Ruben''s Nether Blade', N'1', N'0', N'0', N'7', N'1', N'35', N'7000', N'0', N'0', N'1', N'2500', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031107', N'Ruben''s Karma Edge', N'1', N'0', N'0', N'7', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031108', N'Ruska''s Witch Sword', N'1', N'0', N'0', N'7', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031109', N'Ruska''s Warlock Sword', N'1', N'0', N'0', N'7', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031110', N'Ruska''s Demonic Witch Sword', N'1', N'0', N'0', N'7', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511031301', N'Sorceress Sword', N'1', N'0', N'0', N'7', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041001', N'Witch Scythe', N'1', N'0', N'0', N'8', N'1', N'20', N'7000', N'0', N'0', N'1', N'2600', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041002', N'Ruben''s Scythe', N'1', N'0', N'0', N'8', N'1', N'10', N'7000', N'0', N'0', N'1', N'2600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041003', N'Ruben''s Jagged Scythe', N'1', N'0', N'0', N'8', N'1', N'15', N'7000', N'0', N'0', N'1', N'2600', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041004', N'Ruben''s Witch Scythe', N'1', N'0', N'0', N'8', N'1', N'20', N'7000', N'0', N'0', N'1', N'2600', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041005', N'Ruben''s Dusk Scythe', N'1', N'0', N'0', N'8', N'1', N'25', N'7000', N'0', N'0', N'1', N'2600', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041006', N'Ruben''s Barbed Scythe', N'1', N'0', N'0', N'8', N'1', N'30', N'7000', N'0', N'0', N'1', N'2600', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041007', N'Ruben''s Gothic Scythe', N'1', N'0', N'0', N'8', N'1', N'35', N'7000', N'0', N'0', N'1', N'2600', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041008', N'Ruben''s Stella Scythe', N'1', N'0', N'0', N'8', N'1', N'40', N'7000', N'0', N'0', N'1', N'2600', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041009', N'Ruben''s Demonic Scythe', N'1', N'0', N'0', N'8', N'1', N'45', N'7000', N'0', N'0', N'1', N'2600', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041010', N'Ruben''s Scorching Scythe', N'1', N'0', N'0', N'8', N'1', N'50', N'7000', N'0', N'0', N'1', N'2600', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041011', N'Ruben''s Tera Scythe', N'1', N'0', N'0', N'8', N'1', N'55', N'7000', N'0', N'0', N'1', N'2600', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041101', N'Ruska''s Scythe', N'1', N'0', N'0', N'8', N'1', N'10', N'7000', N'0', N'0', N'1', N'2600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041102', N'Ruska''s Jagged Scythe', N'1', N'0', N'0', N'8', N'1', N'15', N'7000', N'0', N'0', N'1', N'2600', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041103', N'Ruben''s Witch Scythe', N'1', N'0', N'0', N'8', N'1', N'20', N'7000', N'0', N'0', N'1', N'2600', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041104', N'Ruben''s Dusk Scythe', N'1', N'0', N'0', N'8', N'1', N'25', N'7000', N'0', N'0', N'1', N'2600', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041105', N'Ruben''s Barbed Scythe', N'1', N'0', N'0', N'8', N'1', N'30', N'7000', N'0', N'0', N'1', N'2600', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041106', N'Ruben''s Gothic Scythe', N'1', N'0', N'0', N'8', N'1', N'35', N'7000', N'0', N'0', N'1', N'2600', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041107', N'Ruben''s Stella Scythe', N'1', N'0', N'0', N'8', N'1', N'40', N'7000', N'0', N'0', N'1', N'2600', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041108', N'Ruska''s Demonic Scythe', N'1', N'0', N'0', N'8', N'1', N'45', N'7000', N'0', N'0', N'1', N'2600', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041109', N'Ruska''s Scorching Scythe', N'1', N'0', N'0', N'8', N'1', N'50', N'7000', N'0', N'0', N'1', N'2600', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041110', N'Ruska''s Tera Scythe', N'1', N'0', N'0', N'8', N'1', N'55', N'7000', N'0', N'0', N'1', N'2600', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511041301', N'Barbed Scythe', N'1', N'0', N'0', N'8', N'1', N'30', N'7000', N'0', N'0', N'1', N'2600', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051001', N'Light Gauntlets', N'1', N'0', N'0', N'9', N'1', N'5', N'7000', N'0', N'0', N'1', N'2300', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051002', N'Chain Gauntlets', N'1', N'0', N'0', N'9', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051003', N'Ruben''s Metal Gauntlets', N'1', N'0', N'0', N'9', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051004', N'Ruben''s Battle Gauntlets', N'1', N'0', N'0', N'9', N'1', N'15', N'7000', N'0', N'0', N'1', N'2300', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051005', N'Ruben''s Chain Gauntlets', N'1', N'0', N'0', N'9', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051006', N'Ruben''s Jagged Knuckle', N'1', N'0', N'0', N'9', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051007', N'Ruben''s War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051008', N'Ruben''s Evil Gauntlets', N'1', N'0', N'0', N'9', N'1', N'35', N'7000', N'0', N'0', N'1', N'2300', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051009', N'Ruben''s Nimbus Gauntlets', N'1', N'0', N'0', N'9', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051010', N'Ruben''s Fist', N'1', N'0', N'0', N'9', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051011', N'Ruben''s Battle Fist', N'1', N'0', N'0', N'9', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051012', N'Ruben''s War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051101', N'Ruska''s Metal Gauntlets', N'1', N'0', N'0', N'9', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051102', N'Ruska''s Battle Gauntlets', N'1', N'0', N'0', N'9', N'1', N'15', N'7000', N'0', N'0', N'1', N'2300', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051103', N'Ruben''s Chain Gauntlets', N'1', N'0', N'0', N'9', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051104', N'Ruben''s Jagged Knuckle', N'1', N'0', N'0', N'9', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051105', N'Ruben''s War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051106', N'Ruben''s Evil Gauntlets', N'1', N'0', N'0', N'9', N'1', N'35', N'7000', N'0', N'0', N'1', N'2300', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051107', N'Ruben''s Nimbus Gauntlets', N'1', N'0', N'0', N'9', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051108', N'Ruska''s Fist', N'1', N'0', N'0', N'9', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051109', N'Ruska''s Battle Fist', N'1', N'0', N'0', N'9', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051110', N'Ruska''s War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511051301', N'War Gauntlets', N'1', N'0', N'0', N'9', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061001', N'War Claw', N'1', N'0', N'0', N'10', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061002', N'Ruben''s Claw', N'1', N'0', N'0', N'10', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061003', N'Ruben''s Steel Claw', N'1', N'0', N'0', N'10', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061004', N'Ruben''s War Claw', N'1', N'0', N'0', N'10', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061005', N'Ruben''s Battle Claw', N'1', N'0', N'0', N'10', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061006', N'Ruben''s Fatal Claw', N'1', N'0', N'0', N'10', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061007', N'Ruben''s Scissor Claw', N'1', N'0', N'0', N'10', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061008', N'Ruben''s Valiant Claw', N'1', N'0', N'0', N'10', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061009', N'Ruska''s Blade Claw', N'1', N'0', N'0', N'10', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061010', N'Ruben''s Blade Talons', N'1', N'0', N'0', N'10', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061011', N'Ruben''s Zapper Claw', N'1', N'0', N'0', N'10', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061101', N'Ruska''s Claw', N'1', N'0', N'0', N'10', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061102', N'Ruska''s Steel Claw', N'1', N'0', N'0', N'10', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061103', N'Ruben''s War Claw', N'1', N'0', N'0', N'10', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061104', N'Ruben''s Battle Claw', N'1', N'0', N'0', N'10', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061105', N'Ruben''s Fatal Claw', N'1', N'0', N'0', N'10', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061106', N'Ruben''s Scissor Claw', N'1', N'0', N'0', N'10', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061107', N'Ruben''s Valiant Claw', N'1', N'0', N'0', N'10', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061108', N'Ruska''s Blade Claw', N'1', N'0', N'0', N'10', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061109', N'Ruska''s Blade Talons', N'1', N'0', N'0', N'10', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061110', N'Ruska''s Zapper Claw', N'1', N'0', N'0', N'10', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511061301', N'Fatal Claw', N'1', N'0', N'0', N'10', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071001', N'Auto Revolver', N'1', N'0', N'0', N'11', N'1', N'5', N'7000', N'0', N'0', N'1', N'2000', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071002', N'Stinger', N'1', N'0', N'0', N'11', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071003', N'Ruben''s Pepperbox', N'1', N'0', N'0', N'11', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071004', N'Ruben''s Plush Revolver', N'1', N'0', N'0', N'11', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071005', N'Ruben''s Stinger', N'1', N'0', N'0', N'11', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071006', N'Ruben''s Shud Revolver', N'1', N'0', N'0', N'11', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071007', N'Ruben''s Gauss Revolver', N'1', N'0', N'0', N'11', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071008', N'Ruben''s Imperial Revolver', N'1', N'0', N'0', N'11', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071009', N'Ruben''s Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071010', N'Ruben''s Chinook Revolver', N'1', N'0', N'0', N'11', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071011', N'Ruben''s Slugger', N'1', N'0', N'0', N'11', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071012', N'Ruben''s Nebula Revolver', N'1', N'0', N'0', N'11', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071101', N'Ruska''s Pepperbox', N'1', N'0', N'0', N'11', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071102', N'Ruska''s Plush Revolver', N'1', N'0', N'0', N'11', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071103', N'Ruben''s Stinger', N'1', N'0', N'0', N'11', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071104', N'Ruben''s Shud Revolver', N'1', N'0', N'0', N'11', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071105', N'Ruben''s Gauss Revolver', N'1', N'0', N'0', N'11', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071106', N'Ruben''s Imperial Revolver', N'1', N'0', N'0', N'11', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071107', N'Ruben''s Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071108', N'Ruska''s Chinook Revolver', N'1', N'0', N'0', N'11', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071109', N'Ruska''s Slugger', N'1', N'0', N'0', N'11', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071110', N'Ruska''s Nebula Revolver', N'1', N'0', N'0', N'11', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511071301', N'Gauss Pistol', N'1', N'0', N'0', N'11', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081001', N'Roaring Musket', N'1', N'0', N'0', N'12', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081002', N'Ruben''s Musket', N'1', N'0', N'0', N'12', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081003', N'Ruben''s Mighty Musket', N'1', N'0', N'0', N'12', N'1', N'15', N'7000', N'0', N'0', N'1', N'2200', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081004', N'Ruben''s Roaring Musket', N'1', N'0', N'0', N'12', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081005', N'Ruben''s Blazing Musket', N'1', N'0', N'0', N'12', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081006', N'Ruben''s Wild Musket', N'1', N'0', N'0', N'12', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081007', N'Ruben''s Ornate Rifle', N'1', N'0', N'0', N'12', N'1', N'35', N'7000', N'0', N'0', N'1', N'2200', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081008', N'Ruben''s Searer Musket', N'1', N'0', N'0', N'12', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081009', N'Ruben''s Wheellock Rifle', N'1', N'0', N'0', N'12', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081010', N'Ruben''s Coach Gun', N'1', N'0', N'0', N'12', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081011', N'Ruben''s Pult Musket', N'1', N'0', N'0', N'12', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081101', N'Ruska''s Musket', N'1', N'0', N'0', N'12', N'1', N'10', N'7000', N'0', N'0', N'1', N'2200', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081102', N'Ruska''s Mighty Musket', N'1', N'0', N'0', N'12', N'1', N'15', N'7000', N'0', N'0', N'1', N'2200', N'2650', N'437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081103', N'Ruben''s Roaring Musket', N'1', N'0', N'0', N'12', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081104', N'Ruben''s Blazing Musket', N'1', N'0', N'0', N'12', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081105', N'Ruben''s Wild Musket', N'1', N'0', N'0', N'12', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081106', N'Ruben''s Ornate Rifle', N'1', N'0', N'0', N'12', N'1', N'35', N'7000', N'0', N'0', N'1', N'2200', N'10220', N'1686')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081107', N'Ruben''s Searer Musket', N'1', N'0', N'0', N'12', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081108', N'Ruska''s Wheellock Rifle', N'1', N'0', N'0', N'12', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081109', N'Ruska''s Coach Gun', N'1', N'0', N'0', N'12', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081110', N'Ruska''s Pult Musket', N'1', N'0', N'0', N'12', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511081301', N'Wild Rifle', N'1', N'0', N'0', N'12', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091001', N'Disrupt Twin Swords', N'1', N'0', N'0', N'55', N'1', N'5', N'7000', N'0', N'0', N'1', N'2000', N'590', N'98')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091002', N'Identical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091003', N'Ruben''s Asymmetric Twin Swords', N'1', N'0', N'0', N'55', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091004', N'Ruben''s Duplicate Twin Swords', N'1', N'0', N'0', N'55', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091005', N'Ruben''s Identical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091006', N'Ruben''s Congenial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091007', N'Ruben''s Crucial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091008', N'Ruben''s Pessimistic Twin Swords', N'1', N'0', N'0', N'55', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091009', N'Ruben''s Harsh Twin Swords', N'1', N'0', N'0', N'55', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091010', N'Ruben''s Dormant Twin Swords', N'1', N'0', N'0', N'55', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091011', N'Ruben''s Revengers Twin Swords', N'1', N'0', N'0', N'55', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091012', N'Ruben''s Destructive Twin Swords', N'1', N'0', N'0', N'55', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091101', N'Ruskas Asymmetric Twin Swords', N'1', N'0', N'0', N'55', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091102', N'Ruskas Duplicate Twin Swords', N'1', N'0', N'0', N'55', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091103', N'Ruben''s Identical Twin Swords', N'1', N'0', N'0', N'55', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091104', N'Ruben''s Congenial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091105', N'Ruben''s Crucial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091106', N'Ruben''s Pessimistic Twin Swords', N'1', N'0', N'0', N'55', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091107', N'Ruben''s Harsh Twin Swords', N'1', N'0', N'0', N'55', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091108', N'Ruskas Dormant Twin Swords', N'1', N'0', N'0', N'55', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091109', N'Ruskas Revengers Twin Swords', N'1', N'0', N'0', N'55', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091110', N'Ruska''s Destructive Twin Swords', N'1', N'0', N'0', N'55', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511091301', N'Crucial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111001', N'Divine Glaive', N'1', N'0', N'0', N'56', N'1', N'5', N'7000', N'0', N'0', N'1', N'2500', N'590', N'98')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111002', N'Mighty Glaive', N'1', N'0', N'0', N'56', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111003', N'Ruben''s Twilight Glaive', N'1', N'0', N'0', N'56', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111004', N'Ruben''s Modest Glaive', N'1', N'0', N'0', N'56', N'1', N'15', N'7000', N'0', N'0', N'1', N'2500', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111005', N'Ruben''s Mighty Glaive', N'1', N'0', N'0', N'56', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111006', N'Ruben''s Latigent Glaive', N'1', N'0', N'0', N'56', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111007', N'Ruben''s Avent Glaive', N'1', N'0', N'0', N'56', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111008', N'Ruben''s Precious Glaive', N'1', N'0', N'0', N'56', N'1', N'35', N'7000', N'0', N'0', N'1', N'2500', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111009', N'Ruben''s Ardent Glaive', N'1', N'0', N'0', N'56', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111010', N'Ruben''s Tanned Glaive', N'1', N'0', N'0', N'56', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111011', N'Ruben''s Permanent Glaive', N'1', N'0', N'0', N'56', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111012', N'Ruben''s Zucky Glaive', N'1', N'0', N'0', N'56', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111101', N'Ruskas Twilight Glaive', N'1', N'0', N'0', N'56', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111102', N'Ruskas Modest Glaive', N'1', N'0', N'0', N'56', N'1', N'15', N'7000', N'0', N'0', N'1', N'2500', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111103', N'Ruben''s Mighty Glaive', N'1', N'0', N'0', N'56', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111104', N'Ruben''s Latigent Glaive', N'1', N'0', N'0', N'56', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111105', N'Ruben''s Avent Glaive', N'1', N'0', N'0', N'56', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111106', N'Ruben''s Precious Glaive', N'1', N'0', N'0', N'56', N'1', N'35', N'7000', N'0', N'0', N'1', N'2500', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111107', N'Ruben''s Ardent Glaive', N'1', N'0', N'0', N'56', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111108', N'Ruskas Tanned Glaive', N'1', N'0', N'0', N'56', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111109', N'Ruskas Permanent Glaive', N'1', N'0', N'0', N'56', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111110', N'Ruska''s Zucky Glaive', N'1', N'0', N'0', N'56', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511111301', N'Avent Glaive', N'1', N'0', N'0', N'56', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131001', N'Scars Demon Hands', N'1', N'0', N'0', N'57', N'1', N'5', N'7000', N'0', N'0', N'1', N'2300', N'590', N'98')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131002', N'Formidable Demon Hands', N'1', N'0', N'0', N'57', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131003', N'Ruben''s Binding Demon Hands', N'1', N'0', N'0', N'57', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131004', N'Ruben''s Colossal Demon Hands', N'1', N'0', N'0', N'57', N'1', N'15', N'7000', N'0', N'0', N'1', N'2300', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131005', N'Ruben''s Formidable Demon Hands', N'1', N'0', N'0', N'57', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131006', N'Ruben''s Robust Demon Hands', N'1', N'0', N'0', N'57', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131007', N'Ruben''s Frexius Demon Hands', N'1', N'0', N'0', N'57', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131008', N'Ruben''s Vast Demon Hands', N'1', N'0', N'0', N'57', N'1', N'35', N'7000', N'0', N'0', N'1', N'2300', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131009', N'Ruben''s Immense Demon Hands', N'1', N'0', N'0', N'57', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131010', N'Ruben''s Herz Demon Hands', N'1', N'0', N'0', N'57', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131011', N'Ruben''s Punch Demon Hands', N'1', N'0', N'0', N'57', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131012', N'Ruben''s Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131101', N'Ruskas Binding Demon Hands', N'1', N'0', N'0', N'57', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131102', N'Ruskas Colossal Demon Hands', N'1', N'0', N'0', N'57', N'1', N'15', N'7000', N'0', N'0', N'1', N'2300', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131103', N'Ruben''s Formidable Demon Hands', N'1', N'0', N'0', N'57', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131104', N'Ruben''s Robust Demon Hands', N'1', N'0', N'0', N'57', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131105', N'Ruben''s Frexius Demon Hands', N'1', N'0', N'0', N'57', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131106', N'Ruben''s Vast Demon Hands', N'1', N'0', N'0', N'57', N'1', N'35', N'7000', N'0', N'0', N'1', N'2300', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131107', N'Ruben''s Immense Demon Hands', N'1', N'0', N'0', N'57', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131108', N'Ruskas Herz Demon Hands', N'1', N'0', N'0', N'57', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131109', N'Ruskas Punch Demon Hands', N'1', N'0', N'0', N'57', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131110', N'Ruska''s Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511131301', N'Frexius Demon Hands', N'1', N'0', N'0', N'57', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151001', N'Unsigned Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'5', N'7000', N'0', N'0', N'1', N'2000', N'590', N'98')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151002', N'Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151003', N'Ruben''s Qualified Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151004', N'Ruben''s Celebrated Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151005', N'Ruben''s Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151006', N'Ruben''s Versatile Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151007', N'Ruben''s Brisk Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151008', N'Ruben''s Integral Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151009', N'Ruben''s Sleek Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151010', N'Ruben''s Bited Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151011', N'Ruben''s Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151012', N'Ruben''s Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151101', N'Ruskas Qualified Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'245')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151102', N'Ruskas Celebrated Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'15', N'7000', N'0', N'0', N'1', N'2000', N'2650', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151103', N'Ruben''s Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'679')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151104', N'Ruben''s Versatile Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'967')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151105', N'Ruben''s Brisk Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151106', N'Ruben''s Integral Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'35', N'7000', N'0', N'0', N'1', N'2000', N'10220', N'1687')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151107', N'Ruben''s Sleek Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151108', N'Ruskas Bited Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151109', N'Ruskas Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151110', N'Ruska''s Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'511151301', N'Brisk Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011001', N'Gina''s Fabric Shirt', N'1', N'0', N'0', N'1', N'1', N'5', N'5000', N'0', N'0', N'2', N'1400', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011002', N'Gina''s Fabric Upper Garment', N'1', N'0', N'0', N'1', N'1', N'10', N'5000', N'0', N'0', N'2', N'1400', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011003', N'Gina''s Fabric Uniform Upper Garment', N'1', N'0', N'0', N'1', N'1', N'15', N'5000', N'0', N'0', N'2', N'1400', N'1330', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011004', N'Gina''s Handmade Fabric Shirt', N'1', N'0', N'0', N'1', N'1', N'20', N'5000', N'0', N'0', N'2', N'1400', N'2060', N'339')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011005', N'Gina''s Handmade Fabric Garment Upper Garment', N'1', N'0', N'0', N'1', N'1', N'25', N'5000', N'0', N'0', N'2', N'1400', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011006', N'Gina''s Handmade Fabric Uniform Upper Garment', N'1', N'0', N'0', N'1', N'1', N'30', N'5000', N'0', N'0', N'2', N'1400', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011007', N'Gina''s Ornamented Fabric Shirt', N'1', N'0', N'0', N'1', N'1', N'35', N'5000', N'0', N'0', N'2', N'1400', N'5100', N'841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011008', N'Gina''s Ornamented Fabric Vest', N'1', N'0', N'0', N'1', N'1', N'40', N'5000', N'0', N'0', N'2', N'1400', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011009', N'Immaculate Fabric Upper Garment', N'1', N'0', N'0', N'1', N'1', N'45', N'5000', N'0', N'0', N'2', N'1400', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011010', N'Southern Winds Fabric Upper Garment', N'1', N'0', N'0', N'1', N'1', N'50', N'5000', N'0', N'0', N'2', N'1400', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011011', N'Sold at Store Fabric Upper Garment Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'5000', N'0', N'0', N'2', N'1400', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512011012', N'Sold at Store Fabric Upper Garment Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'5000', N'0', N'0', N'2', N'1400', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021001', N'Gina''s Leather Shirt', N'1', N'0', N'0', N'2', N'1', N'5', N'5000', N'0', N'0', N'2', N'1900', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021002', N'Gina''s Leather Suit', N'1', N'0', N'0', N'2', N'1', N'10', N'5000', N'0', N'0', N'2', N'1900', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021003', N'Gina''s Leather Tunic', N'1', N'0', N'0', N'2', N'1', N'15', N'5000', N'0', N'0', N'2', N'1900', N'1330', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021004', N'Gina''s Handmade Leather Shirt', N'1', N'0', N'0', N'2', N'1', N'20', N'5000', N'0', N'0', N'2', N'1900', N'2060', N'339')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021005', N'Gina''s Handmade Leather Suit', N'1', N'0', N'0', N'2', N'1', N'25', N'5000', N'0', N'0', N'2', N'1900', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021006', N'Gina''s Handmade Leather Tunic', N'1', N'0', N'0', N'2', N'1', N'30', N'5000', N'0', N'0', N'2', N'1900', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021007', N'Gina''s Ornamented Leather Shirt', N'1', N'0', N'0', N'2', N'1', N'35', N'5000', N'0', N'0', N'2', N'1900', N'5100', N'841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021008', N'Gina''s Ornamented Leather Suit', N'1', N'0', N'0', N'2', N'1', N'40', N'5000', N'0', N'0', N'2', N'1900', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021009', N'Immaculate Leather Upper Garment', N'1', N'0', N'0', N'2', N'1', N'45', N'5000', N'0', N'0', N'2', N'1900', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021010', N'Southern Winds Leather Upper Garment', N'1', N'0', N'0', N'2', N'1', N'50', N'5000', N'0', N'0', N'2', N'1900', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021011', N'Sold at Store Leather Upper Garment Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'5000', N'0', N'0', N'2', N'1900', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512021012', N'Sold at Store Leather Upper Garment Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'5000', N'0', N'0', N'2', N'1900', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031001', N'Gina''s Chain Armor', N'1', N'0', N'0', N'3', N'1', N'5', N'5000', N'0', N'0', N'2', N'3000', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031002', N'Gina''s Chain Suit', N'1', N'0', N'0', N'3', N'1', N'10', N'5000', N'0', N'0', N'2', N'3000', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031003', N'Gina''s Chain Uniform Upper Garment', N'1', N'0', N'0', N'3', N'1', N'15', N'5000', N'0', N'0', N'2', N'3000', N'1330', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031004', N'Gina''s Handmade Chain Armor', N'1', N'0', N'0', N'3', N'1', N'20', N'5000', N'0', N'0', N'2', N'3000', N'2060', N'339')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031005', N'Gina''s Handmade Chain Suit', N'1', N'0', N'0', N'3', N'1', N'25', N'5000', N'0', N'0', N'2', N'3000', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031006', N'Gina''s Handmade Chain Uniform Upper Garment', N'1', N'0', N'0', N'3', N'1', N'30', N'5000', N'0', N'0', N'2', N'3000', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031007', N'Gina''s Ornamented Chain Armor', N'1', N'0', N'0', N'3', N'1', N'35', N'5000', N'0', N'0', N'2', N'3000', N'5100', N'841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031008', N'Ruska''s Ornamented Chain Suit', N'1', N'0', N'0', N'3', N'1', N'40', N'5000', N'0', N'0', N'2', N'3000', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031009', N'Primeval Chain Upper Garment', N'1', N'0', N'0', N'3', N'1', N'45', N'5000', N'0', N'0', N'2', N'3000', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031010', N'Southern Winds Chain Upper Garment', N'1', N'0', N'0', N'3', N'1', N'50', N'5000', N'0', N'0', N'2', N'3000', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031011', N'Sold at Store Chain Upper Garment Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'5000', N'0', N'0', N'2', N'3000', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512031012', N'Sold at Store Chain Upper Garment Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'5000', N'0', N'0', N'2', N'3000', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041001', N'Gina''s Plate Armor', N'1', N'0', N'0', N'4', N'1', N'5', N'5000', N'0', N'0', N'2', N'5700', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041002', N'Gina''s Plate Suit', N'1', N'0', N'0', N'4', N'1', N'10', N'5000', N'0', N'0', N'2', N'5700', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041003', N'Gina''s Plate Uniform Upper Garment', N'1', N'0', N'0', N'4', N'1', N'15', N'5000', N'0', N'0', N'2', N'5700', N'1330', N'220')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041004', N'Gina''s Handmade Plate Armor', N'1', N'0', N'0', N'4', N'1', N'20', N'5000', N'0', N'0', N'2', N'5700', N'2060', N'339')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041005', N'Gina''s Handmade Plate Suit', N'1', N'0', N'0', N'4', N'1', N'25', N'5000', N'0', N'0', N'2', N'5700', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041006', N'Gina''s Handmade Plate Uniform Upper Garment', N'1', N'0', N'0', N'4', N'1', N'30', N'5000', N'0', N'0', N'2', N'5700', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041007', N'Gina''s Ornamented Plate Armor', N'1', N'0', N'0', N'4', N'1', N'35', N'5000', N'0', N'0', N'2', N'5700', N'5100', N'841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041008', N'Ruska''s Ornamented Plate Suit', N'1', N'0', N'0', N'4', N'1', N'40', N'5000', N'0', N'0', N'2', N'5700', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041009', N'Primeval Plate Upper Garment', N'1', N'0', N'0', N'4', N'1', N'45', N'5000', N'0', N'0', N'2', N'5700', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041010', N'Southern Winds Plate Upper Garment', N'1', N'0', N'0', N'4', N'1', N'50', N'5000', N'0', N'0', N'2', N'5700', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041011', N'Sold at Store Plate Upper Garment Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'5000', N'0', N'0', N'2', N'5700', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'512041012', N'Sold at Store Plate Upper Garment Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'5000', N'0', N'0', N'2', N'5700', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011001', N'Gina''s Fabric Hood', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011002', N'Gina''s Fabric Hat', N'1', N'0', N'0', N'1', N'1', N'10', N'3000', N'0', N'0', N'2', N'900', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011003', N'Gina''s Fabric Head Cover', N'1', N'0', N'0', N'1', N'1', N'15', N'3000', N'0', N'0', N'2', N'900', N'880', N'145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011004', N'Gina''s Handmade Fabric Hood', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011005', N'Gina''s Handmade Fabric Hat', N'1', N'0', N'0', N'1', N'1', N'25', N'3000', N'0', N'0', N'2', N'900', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011006', N'Gina''s Handmade Fabric Head Cover', N'1', N'0', N'0', N'1', N'1', N'30', N'3000', N'0', N'0', N'2', N'900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011007', N'Gina''s Ornamented Fabric Hood', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011008', N'Gina''s Ornamented Fabric Hat', N'1', N'0', N'0', N'1', N'1', N'40', N'3000', N'0', N'0', N'2', N'900', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011009', N'Immaculate Fabric Head', N'1', N'0', N'0', N'1', N'1', N'45', N'3000', N'0', N'0', N'2', N'900', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011010', N'Southern Winds Fabric Helm', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011011', N'Sold at Store Fabric Head Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'3000', N'0', N'0', N'2', N'900', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513011012', N'Sold at Store Fabric Head Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'3000', N'0', N'0', N'2', N'900', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021001', N'Gina''s Leather Hood', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'1200', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021002', N'Gina''s Awesome Leather Hood', N'1', N'0', N'0', N'2', N'1', N'10', N'3000', N'0', N'0', N'2', N'1200', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021003', N'Gina''s Leather Head Cover', N'1', N'0', N'0', N'2', N'1', N'15', N'3000', N'0', N'0', N'2', N'1200', N'880', N'145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021004', N'Gina''s Leather Shawl', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'1200', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021005', N'Gina''s Handcrafted Leather Hood', N'1', N'0', N'0', N'2', N'1', N'25', N'3000', N'0', N'0', N'2', N'1200', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021006', N'Gina''s Handmade Leather Head Cover', N'1', N'0', N'0', N'2', N'1', N'30', N'3000', N'0', N'0', N'2', N'1200', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021007', N'Gina''s Special Leather Hood', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'1200', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021008', N'Gina''s Special Leather Shawl', N'1', N'0', N'0', N'2', N'1', N'40', N'3000', N'0', N'0', N'2', N'1200', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021009', N'Immaculate Leather Head', N'1', N'0', N'0', N'2', N'1', N'45', N'3000', N'0', N'0', N'2', N'1200', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021010', N'Southern Winds Leather Helm', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'1200', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021011', N'Sold at Store Leather Head Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'3000', N'0', N'0', N'2', N'1200', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513021012', N'Sold at Store Leather Head Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'3000', N'0', N'0', N'2', N'1200', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031001', N'Gina''s Chain Coif', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'1800', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031002', N'Gina''s Chain Helmet', N'1', N'0', N'0', N'3', N'1', N'10', N'3000', N'0', N'0', N'2', N'1800', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031003', N'Gina''s Chain Head Cover', N'1', N'0', N'0', N'3', N'1', N'15', N'3000', N'0', N'0', N'2', N'1800', N'880', N'145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031004', N'Gina''s Handmade Chain Coif', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'1800', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031005', N'Gina''s Handmade Chain Helmet', N'1', N'0', N'0', N'3', N'1', N'25', N'3000', N'0', N'0', N'2', N'1800', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031006', N'Gina''s Handmade Chain Head Cover', N'1', N'0', N'0', N'3', N'1', N'30', N'3000', N'0', N'0', N'2', N'1800', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031007', N'Gina''s Ornamented Chain Coif', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'1800', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031008', N'Ruska''s Ornamented Chain Helmet', N'1', N'0', N'0', N'3', N'1', N'40', N'3000', N'0', N'0', N'2', N'1800', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031009', N'Primeval Chain Head', N'1', N'0', N'0', N'3', N'1', N'45', N'3000', N'0', N'0', N'2', N'1800', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031010', N'Southern Winds Chain Helm', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'1800', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031011', N'Sold at Store Chain Head Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'3000', N'0', N'0', N'2', N'1800', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513031012', N'Sold at Store Chain Head Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'3000', N'0', N'0', N'2', N'1800', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041001', N'Gina''s Awesome Plate Helmet', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'3400', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041002', N'Gina''s Awesome Plate Visor', N'1', N'0', N'0', N'4', N'1', N'10', N'3000', N'0', N'0', N'2', N'3400', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041003', N'Gina''s Plate Head Cover', N'1', N'0', N'0', N'4', N'1', N'15', N'3000', N'0', N'0', N'2', N'3400', N'880', N'145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041004', N'Gina''s Handcrafted Plate Helmet', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'3400', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041005', N'Gina''s Handcrafted Plate Visor', N'1', N'0', N'0', N'4', N'1', N'25', N'3000', N'0', N'0', N'2', N'3400', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041006', N'Gina''s Handmade Plate Head Cover', N'1', N'0', N'0', N'4', N'1', N'30', N'3000', N'0', N'0', N'2', N'3400', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041007', N'Gina''s Special Plate Helmet', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'3400', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041008', N'Ruska''s Special Plate Visor', N'1', N'0', N'0', N'4', N'1', N'40', N'3000', N'0', N'0', N'2', N'3400', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041009', N'Primeval Plate Helmet', N'1', N'0', N'0', N'4', N'1', N'45', N'3000', N'0', N'0', N'2', N'3400', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041010', N'Southern Winds Plate Helm', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'3400', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041011', N'Sold at Store Plate Head Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'3000', N'0', N'0', N'2', N'3400', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'513041012', N'Sold at Store Plate Head Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'3000', N'0', N'0', N'2', N'3400', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011001', N'Gina''s Green Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'5', N'4500', N'0', N'0', N'2', N'1100', N'280', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011002', N'Gina''s Pink Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'10', N'4500', N'0', N'0', N'2', N'1100', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011003', N'Gina''s Sky Blue Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'15', N'4500', N'0', N'0', N'2', N'1100', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011004', N'Gina''s Handmade Green Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'20', N'4500', N'0', N'0', N'2', N'1100', N'1920', N'316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011005', N'Gina''s Handmade Pink Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'25', N'4500', N'0', N'0', N'2', N'1100', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011006', N'Gina''s Handmade Sky Blue Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'30', N'4500', N'0', N'0', N'2', N'1100', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011007', N'Gina''s Ornamented Green Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'35', N'4500', N'0', N'0', N'2', N'1100', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011008', N'Gina''s Ornamented Pink Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'40', N'4500', N'0', N'0', N'2', N'1100', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011009', N'Immaculate Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'45', N'4500', N'0', N'0', N'2', N'1100', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011010', N'Southern Winds Fabric Pants', N'1', N'0', N'0', N'1', N'1', N'50', N'4500', N'0', N'0', N'2', N'1100', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011011', N'Sold at Store Fabric Pants Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'4500', N'0', N'0', N'2', N'1100', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514011012', N'Sold at Store Fabric Pants Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'4500', N'0', N'0', N'2', N'1100', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021001', N'Gina''s Leather Pants', N'1', N'0', N'0', N'2', N'1', N'5', N'4500', N'0', N'0', N'2', N'1600', N'280', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021002', N'Gina''s Green Leather Pants', N'1', N'0', N'0', N'2', N'1', N'10', N'4500', N'0', N'0', N'2', N'1600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021003', N'Gina''s High Quality Leather Pants', N'1', N'0', N'0', N'2', N'1', N'15', N'4500', N'0', N'0', N'2', N'1600', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021004', N'Gina''s Handmade Leather Pants', N'1', N'0', N'0', N'2', N'1', N'20', N'4500', N'0', N'0', N'2', N'1600', N'1920', N'316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021005', N'Gina''s Handmade Green Leather Pants', N'1', N'0', N'0', N'2', N'1', N'25', N'4500', N'0', N'0', N'2', N'1600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021006', N'Gina''s Handmade High Quality Leather Pants', N'1', N'0', N'0', N'2', N'1', N'30', N'4500', N'0', N'0', N'2', N'1600', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021007', N'Gina''s Ornamented Leather Pants', N'1', N'0', N'0', N'2', N'1', N'35', N'4500', N'0', N'0', N'2', N'1600', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021008', N'Gina''s Ornamented Green Leather Pants', N'1', N'0', N'0', N'2', N'1', N'40', N'4500', N'0', N'0', N'2', N'1600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021009', N'Immaculate Leather Pants', N'1', N'0', N'0', N'2', N'1', N'45', N'4500', N'0', N'0', N'2', N'1600', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021010', N'Southern Winds Leather Pants', N'1', N'0', N'0', N'2', N'1', N'50', N'4500', N'0', N'0', N'2', N'1600', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021011', N'Sold at Store Leather Pants Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'4500', N'0', N'0', N'2', N'1600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514021012', N'Sold at Store Leather Pants Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'4500', N'0', N'0', N'2', N'1600', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031001', N'Gina''s Chain Puttees', N'1', N'0', N'0', N'3', N'1', N'5', N'4500', N'0', N'0', N'2', N'2400', N'280', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031002', N'Gina''s Chain Leg Guard', N'1', N'0', N'0', N'3', N'1', N'10', N'4500', N'0', N'0', N'2', N'2400', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031003', N'Gina''s Chain Uniform Lower Garment', N'1', N'0', N'0', N'3', N'1', N'15', N'4500', N'0', N'0', N'2', N'2400', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031004', N'Gina''s Handmade Chain Puttees', N'1', N'0', N'0', N'3', N'1', N'20', N'4500', N'0', N'0', N'2', N'2400', N'1920', N'316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031005', N'Gina''s Handmade Chain Leg Guard', N'1', N'0', N'0', N'3', N'1', N'25', N'4500', N'0', N'0', N'2', N'2400', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031006', N'Gina''s Handmade Chain Uniform Lower Garment', N'1', N'0', N'0', N'3', N'1', N'30', N'4500', N'0', N'0', N'2', N'2400', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031007', N'Gina''s Ornamented Chain Puttees', N'1', N'0', N'0', N'3', N'1', N'35', N'4500', N'0', N'0', N'2', N'2400', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031008', N'Ruska''s Ornamented Chain Leg Guard', N'1', N'0', N'0', N'3', N'1', N'40', N'4500', N'0', N'0', N'2', N'2400', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031009', N'Primeval Chain Puttees', N'1', N'0', N'0', N'3', N'1', N'45', N'4500', N'0', N'0', N'2', N'2400', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031010', N'Southern Winds Chain Puttees', N'1', N'0', N'0', N'3', N'1', N'50', N'4500', N'0', N'0', N'2', N'2400', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031011', N'Sold at Store Chain Puttees Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'4500', N'0', N'0', N'2', N'2400', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514031012', N'Sold at Store Chain Puttees Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'4500', N'0', N'0', N'2', N'2400', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041001', N'Gina''s Plate Puttees', N'1', N'0', N'0', N'4', N'1', N'5', N'4500', N'0', N'0', N'2', N'4600', N'280', N'46')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041002', N'Gina''s Plate Leg Guard', N'1', N'0', N'0', N'4', N'1', N'10', N'4500', N'0', N'0', N'2', N'4600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041003', N'Gina''s Plate Uniform Lower Garment', N'1', N'0', N'0', N'4', N'1', N'15', N'4500', N'0', N'0', N'2', N'4600', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041004', N'Gina''s Handmade Plate Puttees', N'1', N'0', N'0', N'4', N'1', N'20', N'4500', N'0', N'0', N'2', N'4600', N'1920', N'316')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041005', N'Gina''s Handmade Plate Leg Guard', N'1', N'0', N'0', N'4', N'1', N'25', N'4500', N'0', N'0', N'2', N'4600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041006', N'Gina''s Handmade Plate Uniform Lower Garment', N'1', N'0', N'0', N'4', N'1', N'30', N'4500', N'0', N'0', N'2', N'4600', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041007', N'Gina''s Ornamented Plate Puttees', N'1', N'0', N'0', N'4', N'1', N'35', N'4500', N'0', N'0', N'2', N'4600', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041008', N'Ruska''s Ornamented Plate Leg Guard', N'1', N'0', N'0', N'4', N'1', N'40', N'4500', N'0', N'0', N'2', N'4600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041009', N'Primeval Plate Puttees', N'1', N'0', N'0', N'4', N'1', N'45', N'4500', N'0', N'0', N'2', N'4600', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041010', N'Southern Winds Plate Puttees', N'1', N'0', N'0', N'4', N'1', N'50', N'4500', N'0', N'0', N'2', N'4600', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041011', N'Sold at Store Plate Puttees Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'4500', N'0', N'0', N'2', N'4600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'514041012', N'Sold at Store Plate Puttees Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'4500', N'0', N'0', N'2', N'4600', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011001', N'Gina''s Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'5', N'4000', N'0', N'0', N'2', N'600', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011002', N'Gina''s Pink Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'10', N'4000', N'0', N'0', N'2', N'600', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011003', N'Gina''s Sky Blue Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011004', N'Gina''s Handmade Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'20', N'4000', N'0', N'0', N'2', N'600', N'1640', N'270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011005', N'Gina''s Handmade Pink Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'25', N'4000', N'0', N'0', N'2', N'600', N'2340', N'386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011006', N'Gina''s Handmade Sky Blue Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011007', N'Gina''s Ornamented Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'35', N'4000', N'0', N'0', N'2', N'600', N'4090', N'675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011008', N'Gina''s Ornamented Pink Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'40', N'4000', N'0', N'0', N'2', N'600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011009', N'Immaculate Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011010', N'Southern Winds Fabric Boots', N'1', N'0', N'0', N'1', N'1', N'50', N'4000', N'0', N'0', N'2', N'600', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011011', N'Sold at Store Fabric Boots Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'4000', N'0', N'0', N'2', N'600', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515011012', N'Sold at Store Fabric Boots Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'4000', N'0', N'0', N'2', N'600', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021001', N'Gina''s Leather Boots', N'1', N'0', N'0', N'2', N'1', N'5', N'4000', N'0', N'0', N'2', N'600', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021002', N'Gina''s Green Leather Boots ', N'1', N'0', N'0', N'2', N'1', N'10', N'4000', N'0', N'0', N'2', N'600', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021003', N'Gina''s High Quality Leather Boots', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021004', N'Gina''s Handmade Leather Boots', N'1', N'0', N'0', N'2', N'1', N'20', N'4000', N'0', N'0', N'2', N'600', N'1640', N'270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021005', N'Gina''s Handmade Green Leather Boots', N'1', N'0', N'0', N'2', N'1', N'25', N'4000', N'0', N'0', N'2', N'600', N'2340', N'386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021006', N'Gina''s Handmade High Quality Leather Boots', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021007', N'Gina''s Ornamented Leather Boots', N'1', N'0', N'0', N'2', N'1', N'35', N'4000', N'0', N'0', N'2', N'600', N'4090', N'675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021008', N'Gina''s Ornamented Green Leather Boots', N'1', N'0', N'0', N'2', N'1', N'40', N'4000', N'0', N'0', N'2', N'600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021009', N'Immaculate Leather Boots', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021010', N'Southern Winds Leather Boots', N'1', N'0', N'0', N'2', N'1', N'50', N'4000', N'0', N'0', N'2', N'600', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021011', N'Sold at Store Leather Boots Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'4000', N'0', N'0', N'2', N'600', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515021012', N'Sold at Store Leather Boots Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'4000', N'0', N'0', N'2', N'600', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031001', N'Gina''s Chain Puttee', N'1', N'0', N'0', N'3', N'1', N'5', N'4000', N'0', N'0', N'2', N'600', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031002', N'Gina''s Chain Boots', N'1', N'0', N'0', N'3', N'1', N'10', N'4000', N'0', N'0', N'2', N'600', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031003', N'Gina''s High Quality Chain Boots', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031004', N'Gina''s Handmade Chain Puttee', N'1', N'0', N'0', N'3', N'1', N'20', N'4000', N'0', N'0', N'2', N'600', N'1640', N'270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031005', N'Gina''s Handmade Chain Boots', N'1', N'0', N'0', N'3', N'1', N'25', N'4000', N'0', N'0', N'2', N'600', N'2340', N'386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031006', N'Gina''s Handmade High Quality Chain Boots', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031007', N'Gina''s Ornamented Chain Puttee', N'1', N'0', N'0', N'3', N'1', N'35', N'4000', N'0', N'0', N'2', N'600', N'4090', N'675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031008', N'Ruska''s Ornamented Chain Boots', N'1', N'0', N'0', N'3', N'1', N'40', N'4000', N'0', N'0', N'2', N'600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031009', N'Primeval Chain Boots', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031010', N'Southern Winds Chain Boots', N'1', N'0', N'0', N'3', N'1', N'50', N'4000', N'0', N'0', N'2', N'600', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031011', N'Sold at Store Chain Boots Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'4000', N'0', N'0', N'2', N'600', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515031012', N'Sold at Store Chain Boots Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'4000', N'0', N'0', N'2', N'600', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041001', N'Gina''s Plate Puttee', N'1', N'0', N'0', N'4', N'1', N'5', N'4000', N'0', N'0', N'2', N'2300', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041002', N'Gina''s Pink Plate Boots', N'1', N'0', N'0', N'4', N'1', N'10', N'4000', N'0', N'0', N'2', N'2300', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041003', N'Gina''s High Quality Plate Boots', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'2300', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041004', N'Gina''s Handmade Plate Puttee', N'1', N'0', N'0', N'4', N'1', N'20', N'4000', N'0', N'0', N'2', N'2300', N'1640', N'270')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041005', N'Gina''s Handmade Pink Plate Boots', N'1', N'0', N'0', N'4', N'1', N'25', N'4000', N'0', N'0', N'2', N'2300', N'2340', N'386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041006', N'Gina''s Handmade High Quality Plate Boots', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'2300', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041007', N'Gina''s Ornamented Plate Puttee', N'1', N'0', N'0', N'4', N'1', N'35', N'4000', N'0', N'0', N'2', N'2300', N'4090', N'675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041008', N'Ruska''s Ornamented Pink Plate Boots', N'1', N'0', N'0', N'4', N'1', N'40', N'4000', N'0', N'0', N'2', N'2300', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041009', N'Primeval Plate Boots', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'2300', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041010', N'Southern Winds Plate Boots', N'1', N'0', N'0', N'4', N'1', N'50', N'4000', N'0', N'0', N'2', N'2300', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041011', N'Sold at Store Plate Boots Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'4000', N'0', N'0', N'2', N'2300', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'515041012', N'Sold at Store Plate Boots Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'4000', N'0', N'0', N'2', N'2300', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011001', N'Gina''s Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'200', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011002', N'Gina''s Fabric Sash', N'1', N'0', N'0', N'1', N'1', N'10', N'3000', N'0', N'0', N'2', N'200', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011003', N'Gina''s Fabric Accessory Belt', N'1', N'0', N'0', N'1', N'1', N'15', N'3000', N'0', N'0', N'2', N'200', N'790', N'130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011004', N'Gina''s Handcrafted Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'200', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011005', N'Gina''s Handmade Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'25', N'3000', N'0', N'0', N'2', N'200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011006', N'Gina''s Handmade Fabric Accessory Belt', N'1', N'0', N'0', N'1', N'1', N'30', N'3000', N'0', N'0', N'2', N'200', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011007', N'Gina''s Pink Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'200', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011008', N'Gina''s Special Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'40', N'3000', N'0', N'0', N'2', N'200', N'3850', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011009', N'Immaculate Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'45', N'3000', N'0', N'0', N'2', N'200', N'4720', N'778')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011010', N'Southern Winds Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'200', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011011', N'Sold at Store Fabric Belt Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'3000', N'0', N'0', N'2', N'200', N'6720', N'1108')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516011012', N'Sold at Store Fabric Belt Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'3000', N'0', N'0', N'2', N'200', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021001', N'Gina''s Leather Belt', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'300', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021002', N'Gina''s Green Leather Belt', N'1', N'0', N'0', N'2', N'1', N'10', N'3000', N'0', N'0', N'2', N'300', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021003', N'Gina''s High Quality Leather Belt ', N'1', N'0', N'0', N'2', N'1', N'15', N'3000', N'0', N'0', N'2', N'300', N'790', N'130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021004', N'Gina''s Handmade Leather Belt', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'300', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021005', N'Gina''s Handmade Green Leather Belt', N'1', N'0', N'0', N'2', N'1', N'25', N'3000', N'0', N'0', N'2', N'300', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021006', N'Gina''s Handmade High Quality Leather Belt', N'1', N'0', N'0', N'2', N'1', N'30', N'3000', N'0', N'0', N'2', N'300', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021007', N'Gina''s Ornamented Leather Belt', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'300', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021008', N'Gina''s Ornamented Green Leather Belt', N'1', N'0', N'0', N'2', N'1', N'40', N'3000', N'0', N'0', N'2', N'300', N'3850', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021009', N'Immaculate Leather Belt', N'1', N'0', N'0', N'2', N'1', N'45', N'3000', N'0', N'0', N'2', N'300', N'4720', N'778')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021010', N'Southern Winds Leather Belt', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'300', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021011', N'Sold at Store Leather Belt Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'3000', N'0', N'0', N'2', N'300', N'6720', N'1108')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516021012', N'Sold at Store Leather Belt Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'3000', N'0', N'0', N'2', N'300', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031001', N'Gina''s Chain Belt', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'500', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031002', N'Gina''s Hooked Chain', N'1', N'0', N'0', N'3', N'1', N'10', N'3000', N'0', N'0', N'2', N'500', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031003', N'Gina''s High Quality Chain Belt', N'1', N'0', N'0', N'3', N'1', N'15', N'3000', N'0', N'0', N'2', N'500', N'790', N'130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031004', N'Gina''s Handmade Chain Belt', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'500', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031005', N'Gina''s Handmade Hooked Chain', N'1', N'0', N'0', N'3', N'1', N'25', N'3000', N'0', N'0', N'2', N'500', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031006', N'Gina''s Handmade High Quality Chain Belt', N'1', N'0', N'0', N'3', N'1', N'30', N'3000', N'0', N'0', N'2', N'500', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031007', N'Gina''s Ornamented Chain Belt', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'500', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031008', N'Ruska''s Ornamented Hooked Chain', N'1', N'0', N'0', N'3', N'1', N'40', N'3000', N'0', N'0', N'2', N'500', N'3850', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031009', N'Primeval Chain Belt', N'1', N'0', N'0', N'3', N'1', N'45', N'3000', N'0', N'0', N'2', N'500', N'4720', N'778')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031010', N'Southern Winds Chain Belt', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'500', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031011', N'Sold at Store Chain Belt Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'3000', N'0', N'0', N'2', N'500', N'6720', N'1108')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516031012', N'Sold at Store Chain Belt Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'3000', N'0', N'0', N'2', N'500', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041001', N'Gina''s Plate Belt', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041002', N'Gina''s Plate Chain', N'1', N'0', N'0', N'4', N'1', N'10', N'3000', N'0', N'0', N'2', N'900', N'440', N'72')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041003', N'Gina''s High Quality Plate Belt', N'1', N'0', N'0', N'4', N'1', N'15', N'3000', N'0', N'0', N'2', N'900', N'790', N'130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041004', N'Gina''s Handmade Plate Belt', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041005', N'Gina''s Handmade Plate Chain', N'1', N'0', N'0', N'4', N'1', N'25', N'3000', N'0', N'0', N'2', N'900', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041006', N'Gina''s Handmade High Quality Plate Belt', N'1', N'0', N'0', N'4', N'1', N'30', N'3000', N'0', N'0', N'2', N'900', N'2370', N'391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041007', N'Gina''s Ornamented Plate Belt', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041008', N'Ruska''s Ornamented Plate Chain', N'1', N'0', N'0', N'4', N'1', N'40', N'3000', N'0', N'0', N'2', N'900', N'3850', N'635')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041009', N'Primeval Plate Belt', N'1', N'0', N'0', N'4', N'1', N'45', N'3000', N'0', N'0', N'2', N'900', N'4720', N'778')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041010', N'Southern Winds Plate Belt', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041011', N'Sold at Store Plate Belt Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'3000', N'0', N'0', N'2', N'900', N'6720', N'1108')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'516041012', N'Sold at Store Plate Belt Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'3000', N'0', N'0', N'2', N'900', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012001', N'Guardian Pendant', N'1', N'0', N'0', N'17', N'2', N'15', N'0', N'0', N'1', N'0', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012002', N'Bone Collector Pendant', N'1', N'0', N'0', N'17', N'2', N'19', N'0', N'0', N'1', N'0', N'400', N'2690', N'444')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012003', N'Angolier Pendant', N'1', N'0', N'0', N'17', N'2', N'23', N'0', N'0', N'1', N'0', N'400', N'3630', N'599')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012004', N'Haken Master Pendant', N'1', N'0', N'0', N'17', N'2', N'27', N'0', N'0', N'1', N'0', N'400', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012005', N'Haken Sorcerer Pendant', N'1', N'0', N'0', N'17', N'2', N'31', N'0', N'0', N'1', N'0', N'400', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012006', N'Undia Pendant', N'1', N'0', N'0', N'17', N'2', N'35', N'0', N'0', N'1', N'0', N'400', N'7230', N'1193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'517012007', N'Minotauros Pendant', N'1', N'0', N'0', N'17', N'2', N'39', N'0', N'0', N'1', N'0', N'400', N'8700', N'1435')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012001', N'Guardian Earrings', N'1', N'0', N'0', N'17', N'2', N'16', N'0', N'0', N'1', N'0', N'200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012002', N'Bone Collector Earrings', N'1', N'0', N'0', N'17', N'2', N'20', N'0', N'0', N'1', N'0', N'200', N'2730', N'451')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012003', N'Angolier Earrings', N'1', N'0', N'0', N'17', N'2', N'24', N'0', N'0', N'1', N'0', N'200', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012004', N'Haken Master Earrings', N'1', N'0', N'0', N'17', N'2', N'28', N'0', N'0', N'1', N'0', N'200', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012005', N'Haken Sorcerer Earrings', N'1', N'0', N'0', N'17', N'2', N'32', N'0', N'0', N'1', N'0', N'200', N'5830', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012006', N'Undia Earrings', N'1', N'0', N'0', N'17', N'2', N'36', N'0', N'0', N'1', N'0', N'200', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'518012007', N'Minotauros Earrings', N'1', N'0', N'0', N'17', N'2', N'40', N'0', N'0', N'1', N'0', N'200', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012001', N'Guardian Ring', N'1', N'0', N'0', N'17', N'2', N'14', N'0', N'0', N'1', N'0', N'300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012002', N'Bone Collector Ring', N'1', N'0', N'0', N'17', N'2', N'18', N'0', N'0', N'1', N'0', N'300', N'2170', N'358')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012003', N'Angolier Ring', N'1', N'0', N'0', N'17', N'2', N'22', N'0', N'0', N'1', N'0', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012004', N'Haken Master Ring', N'1', N'0', N'0', N'17', N'2', N'26', N'0', N'0', N'1', N'0', N'300', N'3870', N'639')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012005', N'Haken Sorcerer Ring', N'1', N'0', N'0', N'17', N'2', N'30', N'0', N'0', N'1', N'0', N'300', N'4890', N'807')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012006', N'Undia Ring', N'1', N'0', N'0', N'17', N'2', N'34', N'0', N'0', N'1', N'0', N'300', N'6030', N'995')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'519012007', N'Minotauros Ring', N'1', N'0', N'0', N'17', N'2', N'38', N'0', N'0', N'1', N'0', N'300', N'7280', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011001', N'Gina''s Fabric Mitts', N'1', N'0', N'0', N'1', N'1', N'5', N'4000', N'0', N'0', N'2', N'300', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011002', N'Gina''s Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'10', N'4000', N'0', N'0', N'2', N'300', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011003', N'Gina''s Fabric Wristband', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'300', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011004', N'Gina''s Handmade Fabric Mitts', N'1', N'0', N'0', N'1', N'1', N'20', N'4000', N'0', N'0', N'2', N'300', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011005', N'Gina''s Handmade Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'25', N'4000', N'0', N'0', N'2', N'300', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011006', N'Gina''s Handmade Fabric Wristband', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'300', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011007', N'Gina''s Ornamented Fabric Mitts', N'1', N'0', N'0', N'1', N'1', N'35', N'4000', N'0', N'0', N'2', N'300', N'3740', N'617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011008', N'Gina''s Ornamented Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'40', N'4000', N'0', N'0', N'2', N'300', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011009', N'Immaculate Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'300', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011010', N'Southern Winds Fabric Gloves', N'1', N'0', N'0', N'1', N'1', N'50', N'4000', N'0', N'0', N'2', N'300', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011011', N'Sold at Store Fabric Gloves Additional Lv. 55', N'1', N'0', N'0', N'1', N'1', N'55', N'4000', N'0', N'0', N'2', N'300', N'8210', N'1355')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520011012', N'Sold at Store Fabric Gloves Additional Lv. 60', N'1', N'0', N'0', N'1', N'1', N'60', N'4000', N'0', N'0', N'2', N'300', N'9590', N'1582')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021001', N'Gina''s Leather Mitts', N'1', N'0', N'0', N'2', N'1', N'5', N'4000', N'0', N'0', N'2', N'300', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021002', N'Gina''s Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'10', N'4000', N'0', N'0', N'2', N'300', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021003', N'Gina''s Leather Wristband', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'300', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021004', N'Gina''s Handmade Leather Mitts', N'1', N'0', N'0', N'2', N'1', N'20', N'4000', N'0', N'0', N'2', N'300', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021005', N'Gina''s Handmade Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'25', N'4000', N'0', N'0', N'2', N'300', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021006', N'Gina''s Handmade Leather Wristband', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'300', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021007', N'Gina''s Ornamented Leather Mitts', N'1', N'0', N'0', N'2', N'1', N'35', N'4000', N'0', N'0', N'2', N'300', N'3740', N'617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021008', N'Gina''s Ornamented Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'40', N'4000', N'0', N'0', N'2', N'300', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021009', N'Immaculate Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'300', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021010', N'Southern Winds Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'50', N'4000', N'0', N'0', N'2', N'300', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021011', N'Sold at Store Leather Gloves Additional Lv. 55', N'1', N'0', N'0', N'2', N'1', N'55', N'4000', N'0', N'0', N'2', N'300', N'8210', N'1355')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520021012', N'Sold at Store Leather Gloves Additional Lv. 60', N'1', N'0', N'0', N'2', N'1', N'60', N'4000', N'0', N'0', N'2', N'300', N'9590', N'1582')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031001', N'Gina''s Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'5', N'4000', N'0', N'0', N'2', N'300', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031002', N'Gina''s Chain Gauntlets', N'1', N'0', N'0', N'3', N'1', N'10', N'4000', N'0', N'0', N'2', N'300', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031003', N'Gina''s Studded Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'300', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031004', N'Gina''s Handmade Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'20', N'4000', N'0', N'0', N'2', N'300', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031005', N'Gina''s Handmade Chain Gauntlets', N'1', N'0', N'0', N'3', N'1', N'25', N'4000', N'0', N'0', N'2', N'300', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031006', N'Gina''s Handmade Studded Gloves', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'300', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031007', N'Gina''s Ornamented Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'35', N'4000', N'0', N'0', N'2', N'300', N'3740', N'617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031008', N'Ruska''s Ornamented Chain Gauntlets', N'1', N'0', N'0', N'3', N'1', N'40', N'4000', N'0', N'0', N'2', N'300', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031009', N'Primeval Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'300', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031010', N'Southern Winds Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'50', N'4000', N'0', N'0', N'2', N'300', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031011', N'Sold at Store Chain Gloves Additional Lv. 55', N'1', N'0', N'0', N'3', N'1', N'55', N'4000', N'0', N'0', N'2', N'300', N'8210', N'1355')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520031012', N'Sold at Store Chain Gloves Additional Lv. 60', N'1', N'0', N'0', N'3', N'1', N'60', N'4000', N'0', N'0', N'2', N'300', N'9590', N'1582')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041001', N'Gina''s Plate Gloves', N'1', N'0', N'0', N'4', N'1', N'5', N'4000', N'0', N'0', N'2', N'1100', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041002', N'Gina''s Plate Gauntlets', N'1', N'0', N'0', N'4', N'1', N'10', N'4000', N'0', N'0', N'2', N'1100', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041003', N'Gina''s High Quality Plate Gauntlets', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'1100', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041004', N'Gina''s Handmade Plate Gloves', N'1', N'0', N'0', N'4', N'1', N'20', N'4000', N'0', N'0', N'2', N'1100', N'1500', N'247')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041005', N'Gina''s Handmade Plate Gauntlets', N'1', N'0', N'0', N'4', N'1', N'25', N'4000', N'0', N'0', N'2', N'1100', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041006', N'Gina''s Handmade High Quality Plate Gauntlets', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'1100', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041007', N'Gina''s Ornamented Plate Gloves', N'1', N'0', N'0', N'4', N'1', N'35', N'4000', N'0', N'0', N'2', N'1100', N'3740', N'617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041008', N'Ruska''s Ornamented Plate Gauntlets', N'1', N'0', N'0', N'4', N'1', N'40', N'4000', N'0', N'0', N'2', N'1100', N'4700', N'775')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041009', N'Primeval Plate Gloves', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'1100', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041010', N'Southern Winds Plate Gloves', N'1', N'0', N'0', N'4', N'1', N'50', N'4000', N'0', N'0', N'2', N'1100', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041011', N'Sold at Store Plate Gloves Additional Lv. 55', N'1', N'0', N'0', N'4', N'1', N'55', N'4000', N'0', N'0', N'2', N'1100', N'8210', N'1355')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'520041012', N'Sold at Store Plate Gloves Additional Lv. 60', N'1', N'0', N'0', N'4', N'1', N'60', N'4000', N'0', N'0', N'2', N'1100', N'9590', N'1582')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011000', N'Practice Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011001', N'Starter Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011002', N'Short Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011003', N'Long Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011004', N'War Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011005', N'Sharp Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011006', N'Battle Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011007', N'Strong Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011008', N'Sturdy Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011009', N'Broad Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011010', N'Celt Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011011', N'Gallant Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011012', N'Primal Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011013', N'Royal Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011014', N'Gothic Sword of Blood', N'1', N'0', N'0', N'5', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011015', N'Great Templar Sword', N'1', N'0', N'0', N'5', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011016', N'Great Keen Sword', N'1', N'0', N'0', N'5', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011017', N'Great Zephyr Sword', N'1', N'0', N'0', N'5', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011018', N'Great Demon Sword', N'1', N'0', N'0', N'5', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611011019', N'Improved Shadow Sword', N'1', N'0', N'0', N'5', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012001', N'Starter Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012002', N'Short Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012003', N'Long Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012004', N'War Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012005', N'Sharp Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012006', N'Battle Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012007', N'Strong Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012008', N'Sturdy Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012009', N'Broad Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012010', N'Celt Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012011', N'Gallant Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012012', N'Primal Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012013', N'Royal Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012014', N'Gothic Sword of Blood', N'1', N'0', N'0', N'5', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012015', N'Great Templar Sword', N'1', N'0', N'0', N'5', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012016', N'Great Keen Sword', N'1', N'0', N'0', N'5', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012017', N'Great Zephyr Sword', N'1', N'0', N'0', N'5', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012018', N'Great Demon Sword', N'1', N'0', N'0', N'5', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611012019', N'Improved Shadow Sword', N'1', N'0', N'0', N'5', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014001', N'Bone Blade of Blood', N'1', N'1', N'5', N'5', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014002', N'Dark Blade of Blood', N'1', N'1', N'5', N'5', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014003', N'Assault Sword of Blood', N'1', N'1', N'5', N'5', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014004', N'Unholy Sword of Blood', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014005', N'Lavinunce Edge of Blood', N'1', N'1', N'5', N'5', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014006', N'Massacre Edge of Blood', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014007', N'Demonic Blade of Blood', N'1', N'1', N'5', N'5', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014008', N'Oathbreaker of Blood', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014009', N'Al-Hajad of Blood', N'1', N'1', N'5', N'5', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014010', N'Dark Eye of Blood', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014011', N'Improved Infinity Reavers', N'1', N'1', N'5', N'5', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014104', N'Delicate Unholy Sword of Blood', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014106', N'Delicate Massacre Edge of Blood', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014108', N'Delicate Creed of Blood', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611014110', N'Delicate Darkeye of Blood', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015001', N'Shark Tooth of Blood', N'1', N'1', N'3', N'5', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015002', N'Dark Prince of Blood', N'1', N'1', N'3', N'5', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015003', N'Black Fang of Blood', N'1', N'1', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015004', N'Blood Moon of Blood', N'1', N'1', N'3', N'5', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015005', N'Dark Stream of Blood', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015006', N'Gram of Blood', N'1', N'1', N'3', N'5', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015007', N'Death Bringer of Blood', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015008', N'Caliburn of Blood', N'1', N'1', N'3', N'5', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015009', N'Tirbing of Blood', N'1', N'1', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015010', N'Sinister of Blood', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015011', N'Improved Dark Stream', N'1', N'1', N'3', N'5', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015103', N'Delicate Black Fang of Blood', N'1', N'1', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015105', N'Delicate Navioo of Blood', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015107', N'Delicate Death Bringer', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611015109', N'Delicate High Tyrfing', N'1', N'1', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016001', N'Korada', N'1', N'1', N'2', N'5', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016002', N'Mogray', N'1', N'1', N'2', N'5', N'6', N'35', N'10000', N'1', N'3', N'1', N'2000', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016003', N'Durendal', N'1', N'1', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016004', N'Arondite', N'1', N'1', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016005', N'Annelas', N'1', N'1', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016006', N'Death Caliber', N'1', N'1', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016007', N'Barisada', N'1', N'1', N'2', N'5', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016103', N'Fell Durendal', N'1', N'1', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016104', N'Fell Arondite', N'1', N'1', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016105', N'Anelas Mutant', N'1', N'1', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016106', N'Deathcalibur Mutant', N'1', N'1', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016205', N'Anelas the Other', N'1', N'1', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611016206', N'Deathcalibur ''The Other''', N'1', N'1', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021001', N'Hand Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'10', N'7000', N'0', N'0', N'1', N'2200', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021002', N'Broad Mace of Blood', N'1', N'0', N'0', N'6', N'1', N'13', N'7000', N'0', N'0', N'1', N'2200', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021003', N'Buroba Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'16', N'7000', N'0', N'0', N'1', N'2200', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021004', N'Steel Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'19', N'7000', N'0', N'0', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021005', N'Celt Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'22', N'7000', N'0', N'0', N'1', N'2200', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021006', N'Two-Handed Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021007', N'Great Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'28', N'7000', N'0', N'0', N'1', N'2200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021008', N'Lokaber Mace of Blood', N'1', N'0', N'0', N'6', N'1', N'31', N'7000', N'0', N'0', N'1', N'2200', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021009', N'Gothic Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'34', N'7000', N'0', N'0', N'1', N'2200', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021010', N'War Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'37', N'7000', N'0', N'0', N'1', N'2200', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021011', N'Bardiche Axe of Blood', N'1', N'0', N'0', N'6', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021012', N'Great Bearded Axe', N'1', N'0', N'0', N'6', N'1', N'43', N'7000', N'0', N'0', N'1', N'2200', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021013', N'Great Buster Slayer', N'1', N'0', N'0', N'6', N'1', N'46', N'7000', N'0', N'0', N'1', N'2200', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021014', N'Great Stingray', N'1', N'0', N'0', N'6', N'1', N'49', N'7000', N'0', N'0', N'1', N'2200', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021015', N'Great Bone Slayer', N'1', N'0', N'0', N'6', N'1', N'52', N'7000', N'0', N'0', N'1', N'2200', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611021016', N'Improved Battle Slayer', N'1', N'0', N'0', N'6', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022001', N'Hand Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'11', N'7500', N'0', N'3', N'1', N'2200', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022002', N'Broad Mace of Blood', N'1', N'0', N'0', N'6', N'2', N'14', N'7500', N'0', N'3', N'1', N'2200', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022003', N'Buroba Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'17', N'7500', N'0', N'3', N'1', N'2200', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022004', N'Steel Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022005', N'Celt Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'23', N'7500', N'0', N'3', N'1', N'2200', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022006', N'Two-Handed Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'26', N'7500', N'0', N'3', N'1', N'2200', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022007', N'Great Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'29', N'7500', N'0', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022008', N'Lokaber Mace of Blood', N'1', N'0', N'0', N'6', N'2', N'32', N'7500', N'0', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022009', N'Gothic Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'35', N'7500', N'0', N'3', N'1', N'2200', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022010', N'War Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'38', N'7500', N'0', N'3', N'1', N'2200', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022011', N'Bardiche Axe of Blood', N'1', N'0', N'0', N'6', N'2', N'41', N'7500', N'0', N'3', N'1', N'2200', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022012', N'Great Bearded Axe', N'1', N'0', N'0', N'6', N'2', N'44', N'7500', N'0', N'3', N'1', N'2200', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022013', N'Great Buster Slayer', N'1', N'0', N'0', N'6', N'2', N'47', N'7500', N'0', N'3', N'1', N'2200', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022014', N'Great Stingray', N'1', N'0', N'0', N'6', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022015', N'Great Bone Slayer', N'1', N'0', N'0', N'6', N'2', N'53', N'7500', N'0', N'3', N'1', N'2200', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611022016', N'Improved Battle Slayer', N'1', N'0', N'0', N'6', N'2', N'56', N'7500', N'0', N'3', N'1', N'2200', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024001', N'Assault Mace of Blood', N'1', N'1', N'5', N'6', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024002', N'Tabar Jin of Blood', N'1', N'1', N'5', N'6', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024003', N'Lumberjack of Blood', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024004', N'Fury of Blood', N'1', N'1', N'5', N'6', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024005', N'Kingsbane of Blood', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024006', N'Demonic Slayer of Blood', N'1', N'1', N'5', N'6', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024007', N'Minotauros of Blood', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024008', N'Ironcleaver of Blood', N'1', N'1', N'5', N'6', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024009', N'Bloody Murderer of Blood', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024010', N'Improved Destruction', N'1', N'1', N'5', N'6', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024103', N'Delicate Lumberjack of Blood', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024105', N'Delicate Kingsbane of Blood', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024107', N'Delicate Minotaur of Blood', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024109', N'Delicate Bloody Murderer of Blood', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611024110', N'Exquisite Improved Destruction', N'1', N'1', N'5', N'6', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025001', N'Francisca of Blood', N'1', N'1', N'3', N'6', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025002', N'Frokion of Blood', N'1', N'1', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025003', N'Spontun of Blood', N'1', N'1', N'3', N'6', N'5', N'25', N'9000', N'1', N'3', N'1', N'2200', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025004', N'Grandis of Blood', N'1', N'1', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025005', N'Chaser of Blood', N'1', N'1', N'3', N'6', N'5', N'35', N'9000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025006', N'El-Nas of Blood', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025007', N'Earthquake of Blood', N'1', N'1', N'3', N'6', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025008', N'Grand Cross of Blood', N'1', N'1', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025009', N'Improved Gigantes', N'1', N'1', N'3', N'6', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025102', N'Delicate Prokion of Blood', N'1', N'1', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025104', N'Delicate Grandis of Blood', N'1', N'1', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025106', N'Delicate El-Nas of Blood', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025108', N'Delicate High Grand Cross', N'1', N'1', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611025109', N'Exquisite Improved Gigantes', N'1', N'1', N'3', N'6', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026001', N'Crushinator', N'1', N'1', N'2', N'6', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026002', N'Morgenstern', N'1', N'1', N'2', N'6', N'6', N'35', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026003', N'Vajrayuda', N'1', N'1', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026004', N'Raevatine', N'1', N'1', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026005', N'Molnir', N'1', N'1', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026006', N'Amaterras', N'1', N'1', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026007', N'Abyss Roar', N'1', N'1', N'2', N'6', N'6', N'60', N'10000', N'1', N'3', N'1', N'2200', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026103', N'Fell Vajrayuda', N'1', N'1', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026104', N'Fell Raevatine', N'1', N'1', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026105', N'Mornir Mutant', N'1', N'1', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026106', N'Amaterasu Mutant', N'1', N'1', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026205', N'Mornir the Other', N'1', N'1', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611026206', N'Amaterasu ''The Other''', N'1', N'1', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031000', N'Practice Magic Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'1', N'100000', N'0', N'0', N'1', N'2500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031001', N'Gnarled Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'1', N'7000', N'0', N'0', N'1', N'2500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031002', N'Magic Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'4', N'7000', N'0', N'0', N'1', N'2500', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031003', N'Lunar Magic Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'7', N'7000', N'0', N'0', N'1', N'2500', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031004', N'Crystal Magic Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031005', N'Runic Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'13', N'7000', N'0', N'0', N'1', N'2500', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031006', N'Spell Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'16', N'7000', N'0', N'0', N'1', N'2500', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031007', N'Druidic Blade of Blood', N'1', N'0', N'0', N'7', N'1', N'19', N'7000', N'0', N'0', N'1', N'2500', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031008', N'Spellweaver of Blood', N'1', N'0', N'0', N'7', N'1', N'22', N'7000', N'0', N'0', N'1', N'2500', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031009', N'Rune Spell Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031010', N'Spell Breaker of Blood', N'1', N'0', N'0', N'7', N'1', N'28', N'7000', N'0', N'0', N'1', N'2500', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031011', N'Sorceress Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'31', N'7000', N'0', N'0', N'1', N'2500', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031012', N'Nether Blade of Blood', N'1', N'0', N'0', N'7', N'1', N'34', N'7000', N'0', N'0', N'1', N'2500', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031013', N'Elven Spell Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'37', N'7000', N'0', N'0', N'1', N'2500', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031014', N'Karma Edge of Blood', N'1', N'0', N'0', N'7', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031015', N'Great Rune Breaker', N'1', N'0', N'0', N'7', N'1', N'43', N'7000', N'0', N'0', N'1', N'2500', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031016', N'Great Obsidian Sword', N'1', N'0', N'0', N'7', N'1', N'46', N'7000', N'0', N'0', N'1', N'2500', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031017', N'Great Warlock Sword', N'1', N'0', N'0', N'7', N'1', N'49', N'7000', N'0', N'0', N'1', N'2500', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031018', N'Great Witchblade', N'1', N'0', N'0', N'7', N'1', N'52', N'7000', N'0', N'0', N'1', N'2500', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611031019', N'Demon Witch Sword of Blood', N'1', N'0', N'0', N'7', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032001', N'Gnarled Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'2', N'7500', N'0', N'3', N'1', N'2500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032002', N'Magic Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'5', N'7500', N'0', N'3', N'1', N'2500', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032003', N'Lunar Magic Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'8', N'7500', N'0', N'3', N'1', N'2500', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032004', N'Crystal Magic Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'11', N'7500', N'0', N'3', N'1', N'2500', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032005', N'Runic Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'14', N'7500', N'0', N'3', N'1', N'2500', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032006', N'Spell Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'17', N'7500', N'0', N'3', N'1', N'2500', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032007', N'Druidic Blade of Blood', N'1', N'0', N'0', N'7', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032008', N'Spellweaver of Blood', N'1', N'0', N'0', N'7', N'2', N'23', N'7500', N'0', N'3', N'1', N'2500', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032009', N'Rune Spell Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'26', N'7500', N'0', N'3', N'1', N'2500', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032010', N'Spell Breaker of Blood', N'1', N'0', N'0', N'7', N'2', N'29', N'7500', N'0', N'3', N'1', N'2500', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032011', N'Sorceress Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'32', N'7500', N'0', N'3', N'1', N'2500', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032012', N'Nether Blade of Blood', N'1', N'0', N'0', N'7', N'2', N'35', N'7500', N'0', N'3', N'1', N'2500', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032013', N'Elven Spell Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'38', N'7500', N'0', N'3', N'1', N'2500', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032014', N'Karma Edge of Blood', N'1', N'0', N'0', N'7', N'2', N'41', N'7500', N'0', N'3', N'1', N'2500', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032015', N'Great Rune Breaker', N'1', N'0', N'0', N'7', N'2', N'44', N'7500', N'0', N'3', N'1', N'2500', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032016', N'Great Obsidian Sword', N'1', N'0', N'0', N'7', N'2', N'47', N'7500', N'0', N'3', N'1', N'2500', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032017', N'Great Warlock Sword', N'1', N'0', N'0', N'7', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032018', N'Great Witchblade', N'1', N'0', N'0', N'7', N'2', N'53', N'7500', N'0', N'3', N'1', N'2500', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611032019', N'Demon Witch Sword of Blood', N'1', N'0', N'0', N'7', N'2', N'56', N'7500', N'0', N'3', N'1', N'2500', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034001', N'Bone Sword of Blood', N'1', N'1', N'5', N'7', N'4', N'5', N'8000', N'1', N'3', N'1', N'2500', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034002', N'Spatha of Blood', N'1', N'1', N'5', N'7', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034003', N'Orchid Sword of Blood', N'1', N'1', N'5', N'7', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034004', N'Bane Blade of Blood', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034005', N'Misericorde of Blood', N'1', N'1', N'5', N'7', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034006', N'Curtis Doom Witch Sword of Blood', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034007', N'Demon Witch Sword of Blood', N'1', N'1', N'5', N'7', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034008', N'Winter''s Heart of Blood', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034009', N'Tahelum of Blood', N'1', N'1', N'5', N'7', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034010', N'Avenger of Blood', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034011', N'Improved Exceed', N'1', N'1', N'5', N'7', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034104', N'Delicate Bane Blade of Blood', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034106', N'Delicate Curtis Doom Witch Sword of Blood', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034108', N'Delicate Winter''s Heart of Blood', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034110', N'Delicate Avenger of Blood', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611034111', N'Exquisite Improved Exceed', N'1', N'1', N'5', N'7', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035001', N'Bansi of Blood', N'1', N'1', N'3', N'7', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035002', N'Vanquish of Blood', N'1', N'1', N'3', N'7', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035003', N'Pendulum of Blood', N'1', N'1', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035004', N'Chrysaor of Blood', N'1', N'1', N'3', N'7', N'5', N'25', N'9000', N'1', N'3', N'1', N'2500', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035005', N'Mimang of Blood', N'1', N'1', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035006', N'Nigling of Blood', N'1', N'1', N'3', N'7', N'5', N'35', N'9000', N'1', N'3', N'1', N'2500', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035007', N'Acubens of Blood', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035008', N'Nagelring of Blood', N'1', N'1', N'3', N'7', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035009', N'Naegling of Blood', N'1', N'1', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035010', N'Improved Kalabog', N'1', N'1', N'3', N'7', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035103', N'Delicate Pendulum of Blood', N'1', N'1', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035105', N'Delicate Illustion of Blood', N'1', N'1', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035107', N'Delicate Aquvence of Blood', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035109', N'Delicate High Negelring', N'1', N'1', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611035110', N'Exquisite Improved Kalabog', N'1', N'1', N'3', N'7', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036001', N'Sukrep', N'1', N'1', N'2', N'7', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036002', N'Frunting', N'1', N'1', N'2', N'7', N'6', N'35', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036003', N'Angervadil', N'1', N'1', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036004', N'Askaron', N'1', N'1', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036005', N'Haute-Claire', N'1', N'1', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036006', N'Byrmoar', N'1', N'1', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036007', N'Gembringer', N'1', N'1', N'2', N'7', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036103', N'Fell Angervadil', N'1', N'1', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036104', N'Fell Askaron', N'1', N'1', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036105', N'Hott-Claire Mutant', N'1', N'1', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036106', N'Wirmor Mutant', N'1', N'1', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036205', N'Hott-Claire the Other', N'1', N'1', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611036206', N'Wirmor ''The Other''', N'1', N'1', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041001', N'Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'10', N'7000', N'0', N'0', N'1', N'2600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041002', N'Nordic Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'13', N'7000', N'0', N'0', N'1', N'2600', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041003', N'Jagged Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'16', N'7000', N'0', N'0', N'1', N'2600', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041004', N'Witch Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'19', N'7000', N'0', N'0', N'1', N'2600', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041005', N'Celt Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'22', N'7000', N'0', N'0', N'1', N'2600', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041006', N'Dusk Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'25', N'7000', N'0', N'0', N'1', N'2600', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041007', N'Battle Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'28', N'7000', N'0', N'0', N'1', N'2600', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041008', N'Barbed Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'31', N'7000', N'0', N'0', N'1', N'2600', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041009', N'Gothic Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'34', N'7000', N'0', N'0', N'1', N'2600', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041010', N'Crimson Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'37', N'7000', N'0', N'0', N'1', N'2600', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041011', N'Stella Scythe of Blood', N'1', N'0', N'0', N'8', N'1', N'40', N'7000', N'0', N'0', N'1', N'2600', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041012', N'Great Gloomy Scythe', N'1', N'0', N'0', N'8', N'1', N'43', N'7000', N'0', N'0', N'1', N'2600', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041013', N'Great Demonic Scythe', N'1', N'0', N'0', N'8', N'1', N'46', N'7000', N'0', N'0', N'1', N'2600', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041014', N'Great Scorching Scythe', N'1', N'0', N'0', N'8', N'1', N'49', N'7000', N'0', N'0', N'1', N'2600', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041015', N'Great Runic Scythe', N'1', N'0', N'0', N'8', N'1', N'52', N'7000', N'0', N'0', N'1', N'2600', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611041016', N'Improved Tera Scythe', N'1', N'0', N'0', N'8', N'1', N'55', N'7000', N'0', N'0', N'1', N'2600', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042001', N'Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'11', N'7500', N'0', N'3', N'1', N'2600', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042002', N'Nordic Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'14', N'7500', N'0', N'3', N'1', N'2600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042003', N'Jagged Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'17', N'7500', N'0', N'3', N'1', N'2600', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042004', N'Witch Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'20', N'7500', N'0', N'3', N'1', N'2600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042005', N'Celt Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'23', N'7500', N'0', N'3', N'1', N'2600', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042006', N'Dusk Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'26', N'7500', N'0', N'3', N'1', N'2600', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042007', N'Battle Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'29', N'7500', N'0', N'3', N'1', N'2600', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042008', N'Barbed Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'32', N'7500', N'0', N'3', N'1', N'2600', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042009', N'Gothic Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'35', N'7500', N'0', N'3', N'1', N'2600', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042010', N'Crimson Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'38', N'7500', N'0', N'3', N'1', N'2600', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042011', N'Stella Scythe of Blood', N'1', N'0', N'0', N'8', N'2', N'41', N'7500', N'0', N'3', N'1', N'2600', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042012', N'Great Gloomy Scythe', N'1', N'0', N'0', N'8', N'2', N'44', N'7500', N'0', N'3', N'1', N'2600', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042013', N'Great Demonic Scythe', N'1', N'0', N'0', N'8', N'2', N'47', N'7500', N'0', N'3', N'1', N'2600', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042014', N'Great Scorching Scythe', N'1', N'0', N'0', N'8', N'2', N'50', N'7500', N'0', N'3', N'1', N'2600', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042015', N'Great Runic Scythe', N'1', N'0', N'0', N'8', N'2', N'53', N'7500', N'0', N'3', N'1', N'2600', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611042016', N'Improved Tera Scythe', N'1', N'0', N'0', N'8', N'2', N'56', N'7500', N'0', N'3', N'1', N'2600', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044001', N'Grey Phantom of Blood', N'1', N'1', N'5', N'8', N'4', N'10', N'8000', N'1', N'3', N'1', N'2600', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044002', N'Foereaper of Blood', N'1', N'1', N'5', N'8', N'4', N'15', N'8000', N'1', N'3', N'1', N'2600', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044003', N'Osprey of Blood', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044004', N'Dark Scythe of Blood', N'1', N'1', N'5', N'8', N'4', N'25', N'8000', N'1', N'3', N'1', N'2600', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044005', N'Wicked Claw of Blood', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044006', N'Angry Buzzard of Blood', N'1', N'1', N'5', N'8', N'4', N'35', N'8000', N'1', N'3', N'1', N'2600', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044007', N'Rosemary of Blood', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044008', N'Chaos of Blood', N'1', N'1', N'5', N'8', N'4', N'45', N'8000', N'1', N'3', N'1', N'2600', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044009', N'Albatros of Blood', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044010', N'Improved Silence', N'1', N'1', N'5', N'8', N'4', N'55', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044103', N'Delicate Osprey of Blood', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044105', N'Delicate Wicked Claw of Blood', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044107', N'Delicate Rose Mare of Blood', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044109', N'Albatros of Blood', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611044110', N'Exquisite Improved Silence', N'1', N'1', N'5', N'8', N'4', N'60', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045001', N'Knight-Hag of Blood', N'1', N'1', N'3', N'8', N'5', N'15', N'9000', N'1', N'3', N'1', N'2600', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045002', N'Alhena of Blood', N'1', N'1', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045003', N'Death Scythe of Blood', N'1', N'1', N'3', N'8', N'5', N'25', N'9000', N'1', N'3', N'1', N'2600', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045004', N'Canine of Blood', N'1', N'1', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045005', N'Shubalt''s Hex of Blood', N'1', N'1', N'3', N'8', N'5', N'35', N'9000', N'1', N'3', N'1', N'2600', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045006', N'Axelus of Blood', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045007', N'Badb Catha of Blood', N'1', N'1', N'3', N'8', N'5', N'45', N'9000', N'1', N'3', N'1', N'2600', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045008', N'Freya of Blood', N'1', N'1', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045009', N'Improved Sirpidium', N'1', N'1', N'3', N'8', N'5', N'55', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045102', N'Delicate Al-Hana of Blood', N'1', N'1', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045104', N'Delicate Canine of Blood', N'1', N'1', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045106', N'Delicate Asellus of Blood', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045108', N'Delicate High Freyja', N'1', N'1', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611045109', N'Exquisite Improved Sirpidium', N'1', N'1', N'3', N'8', N'5', N'60', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046001', N'Genocide', N'1', N'1', N'2', N'8', N'6', N'30', N'10000', N'1', N'3', N'1', N'2600', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046002', N'Crescent Moon', N'1', N'1', N'2', N'8', N'6', N'35', N'10000', N'1', N'3', N'1', N'2600', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046003', N'Alkaid', N'1', N'1', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046004', N'Cyrious', N'1', N'1', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046005', N'Apocalypse', N'1', N'1', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046006', N'Saturnous', N'1', N'1', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046007', N'Eintree', N'1', N'1', N'2', N'8', N'6', N'60', N'10000', N'1', N'3', N'1', N'2600', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046103', N'Fell Alkaid', N'1', N'1', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046104', N'Fell Cyrious', N'1', N'1', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20010', N'3302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046105', N'Apocalypse Mutant', N'1', N'1', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046106', N'Saturnus Mutant', N'1', N'1', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046205', N'Apocalypse the Other', N'1', N'1', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611046206', N'Saturnus ''The Other''', N'1', N'1', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051000', N'Practice Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'1', N'100000', N'0', N'0', N'1', N'2300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051001', N'Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'1', N'7000', N'0', N'0', N'1', N'2300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051002', N'Light Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'4', N'7000', N'0', N'0', N'1', N'2300', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051003', N'Low Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'7', N'7000', N'0', N'0', N'1', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051004', N'Metal Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051005', N'Buster Fist of Blood', N'1', N'0', N'0', N'9', N'1', N'13', N'7000', N'0', N'0', N'1', N'2300', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051006', N'Battle Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'16', N'7000', N'0', N'0', N'1', N'2300', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051007', N'Chain Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'19', N'7000', N'0', N'0', N'1', N'2300', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051008', N'Rigid Gauntlet of Blood', N'1', N'0', N'0', N'9', N'1', N'22', N'7000', N'0', N'0', N'1', N'2300', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051009', N'Jagged Knuckle of Blood', N'1', N'0', N'0', N'9', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051010', N'Lord Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'28', N'7000', N'0', N'0', N'1', N'2300', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051011', N'War Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'31', N'7000', N'0', N'0', N'1', N'2300', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051012', N'Evil Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'34', N'7000', N'0', N'0', N'1', N'2300', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051013', N'Mighty Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'37', N'7000', N'0', N'0', N'1', N'2300', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051014', N'Nimbus Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051015', N'Great Ogre Gauntlet', N'1', N'0', N'0', N'9', N'1', N'43', N'7000', N'0', N'0', N'1', N'2300', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051016', N'Great Battle Fist', N'1', N'0', N'0', N'9', N'1', N'46', N'7000', N'0', N'0', N'1', N'2300', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051017', N'Great Iron Fist', N'1', N'0', N'0', N'9', N'1', N'49', N'7000', N'0', N'0', N'1', N'2300', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051018', N'Great Demon Fist', N'1', N'0', N'0', N'9', N'1', N'52', N'7000', N'0', N'0', N'1', N'2300', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611051019', N'War Gauntlets of Blood', N'1', N'0', N'0', N'9', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052001', N'Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'2', N'7500', N'0', N'3', N'1', N'2300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052002', N'Light Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'5', N'7500', N'0', N'3', N'1', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052003', N'Low Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'8', N'7500', N'0', N'3', N'1', N'2300', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052004', N'Metal Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'11', N'7500', N'0', N'3', N'1', N'2300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052005', N'Buster Fist of Blood', N'1', N'0', N'0', N'9', N'2', N'14', N'7500', N'0', N'3', N'1', N'2300', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052006', N'Battle Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'17', N'7500', N'0', N'3', N'1', N'2300', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052007', N'Chain Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052008', N'Rigid Gauntlet of Blood', N'1', N'0', N'0', N'9', N'2', N'23', N'7500', N'0', N'3', N'1', N'2300', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052009', N'Jagged Knuckle of Blood', N'1', N'0', N'0', N'9', N'2', N'26', N'7500', N'0', N'3', N'1', N'2300', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052010', N'Lord Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'29', N'7500', N'0', N'3', N'1', N'2300', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052011', N'War Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'32', N'7500', N'0', N'3', N'1', N'2300', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052012', N'Evil Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'35', N'7500', N'0', N'3', N'1', N'2300', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052013', N'Mighty Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'38', N'7500', N'0', N'3', N'1', N'2300', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052014', N'Nimbus Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'41', N'7500', N'0', N'3', N'1', N'2300', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052015', N'Great Ogre Gauntlet', N'1', N'0', N'0', N'9', N'2', N'44', N'7500', N'0', N'3', N'1', N'2300', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052016', N'Great Battle Fist', N'1', N'0', N'0', N'9', N'2', N'47', N'7500', N'0', N'3', N'1', N'2300', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052017', N'Great Iron Fist', N'1', N'0', N'0', N'9', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052018', N'Great Demon Fist', N'1', N'0', N'0', N'9', N'2', N'53', N'7500', N'0', N'3', N'1', N'2300', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611052019', N'War Gauntlets of Blood', N'1', N'0', N'0', N'9', N'2', N'56', N'7500', N'0', N'3', N'1', N'2300', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054001', N'Bone Gauntlets of Blood', N'1', N'1', N'5', N'9', N'4', N'5', N'8000', N'1', N'3', N'1', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054002', N'Howler of Blood', N'1', N'1', N'5', N'9', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054003', N'Envy of Blood', N'1', N'1', N'5', N'9', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054004', N'Blasted Gauntlet of Blood', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054005', N'Jade Gauntlets of Blood', N'1', N'1', N'5', N'9', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054006', N'Titan Arm of Blood', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054007', N'Black Rose of Blood', N'1', N'1', N'5', N'9', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054008', N'White Wolf of Blood', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054009', N'Spirit Keeper of Blood', N'1', N'1', N'5', N'9', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054010', N'Fiend Fist of Blood', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054011', N'Improved Hammer Leech', N'1', N'1', N'5', N'9', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054104', N'Delicate Cursed War Gauntlet of Blood', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054106', N'Delicate Curtis Doom Gauntlet of Blood', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054108', N'Delicate White Wolf of Blood', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054110', N'Delicate Fiend Fist of Blood', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611054111', N'Exquisite Improved Hammer Leech', N'1', N'1', N'5', N'9', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055001', N'Shark Skin of Blood', N'1', N'1', N'3', N'9', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055002', N'Wolf Tail of Blood', N'1', N'1', N'3', N'9', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055003', N'Godhand of Blood', N'1', N'1', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055004', N'Scavenger of Blood', N'1', N'1', N'3', N'9', N'5', N'25', N'9000', N'1', N'3', N'1', N'2300', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055005', N'Vex-Servant of Blood', N'1', N'1', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055006', N'War Crisis of Blood', N'1', N'1', N'3', N'9', N'5', N'35', N'9000', N'1', N'3', N'1', N'2300', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055007', N'Kornephoros of Blood', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055008', N'Skadi of Blood', N'1', N'1', N'3', N'9', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055009', N'Garum of Blood', N'1', N'1', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055010', N'Improved Nejad', N'1', N'1', N'3', N'9', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055103', N'Delicate Duve of Blood', N'1', N'1', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055105', N'Delicate Vex-Serpant of Blood', N'1', N'1', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055107', N'Delicate Kornephoros of Blood', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055109', N'Delicate High Efreet', N'1', N'1', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611055110', N'Exquisite Improved Nejad', N'1', N'1', N'3', N'9', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056001', N'Inferno', N'1', N'1', N'2', N'9', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056002', N'Ifrit', N'1', N'1', N'2', N'9', N'6', N'35', N'10000', N'1', N'3', N'1', N'2300', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056003', N'Beowulf', N'1', N'1', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056004', N'Hildebrant', N'1', N'1', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056005', N'Ginnungagap', N'1', N'1', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056006', N'The Cloud', N'1', N'1', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056007', N'Lybarion', N'1', N'1', N'2', N'9', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056103', N'Fell Beowulf', N'1', N'1', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056104', N'Fell Hildebrandt', N'1', N'1', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056105', N'Ginung Gagaf Mutant', N'1', N'1', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056106', N'The Cloud Mutant', N'1', N'1', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056205', N'Ginung Gagaf the Other', N'1', N'1', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611056206', N'The Cloud ''The Other''', N'1', N'1', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061001', N'Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061002', N'Talons of Blood', N'1', N'0', N'0', N'10', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061003', N'Steel Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061004', N'War Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061005', N'Tickler of Blood', N'1', N'0', N'0', N'10', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061006', N'Battle Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061007', N'Wild Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061008', N'Fatal Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061009', N'Scissor Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061010', N'Iron Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061011', N'Valiant Claws of Blood', N'1', N'0', N'0', N'10', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061012', N'Great Avenging Claw', N'1', N'0', N'0', N'10', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061013', N'Great Demon Claw', N'1', N'0', N'0', N'10', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061014', N'Great Blade Talon', N'1', N'0', N'0', N'10', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061015', N'Great Biting Talon', N'1', N'0', N'0', N'10', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611061016', N'Improved Zapper Claw', N'1', N'0', N'0', N'10', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062001', N'Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062002', N'Talons of Blood', N'1', N'0', N'0', N'10', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062003', N'Steel Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062004', N'War Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062005', N'Tickler of Blood', N'1', N'0', N'0', N'10', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062006', N'Battle Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062007', N'Wild Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062008', N'Fatal Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062009', N'Scissor Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062010', N'Iron Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062011', N'Valiant Claws of Blood', N'1', N'0', N'0', N'10', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062012', N'Great Avenging Claw', N'1', N'0', N'0', N'10', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062013', N'Great Demon Claw', N'1', N'0', N'0', N'10', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062014', N'Great Blade Talon', N'1', N'0', N'0', N'10', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062015', N'Great Biting Talon', N'1', N'0', N'0', N'10', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611062016', N'Improved Zapper Claw', N'1', N'0', N'0', N'10', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064001', N'Ghost Claws of Blood', N'1', N'1', N'5', N'10', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064002', N'Pride of Blood', N'1', N'1', N'5', N'10', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064003', N'Gleaming Claw of Blood', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064004', N'Cestus of Blood', N'1', N'1', N'5', N'10', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064005', N'Shackled Talon of Blood', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064006', N'Ogre Mitt of Blood', N'1', N'1', N'5', N'10', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064007', N'Mithril Claw of Blood', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064008', N'Chimera of Blood', N'1', N'1', N'5', N'10', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064009', N'Storm Rider of Blood', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064010', N'Improved Dual Ghost', N'1', N'1', N'5', N'10', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064103', N'Delicate Cursed War Claw of Blood', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064105', N'Delicate Curtis Doom Claw of Blood', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064107', N'Delicate Slaughter of Blood', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064109', N'Delicate Storm Rider of Blood', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611064110', N'Exquisite Improved Dual Ghost', N'1', N'1', N'5', N'10', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065001', N'Agni of Blood', N'1', N'1', N'3', N'10', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065002', N'Mangler of Blood', N'1', N'1', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065003', N'Dark Crow of Blood', N'1', N'1', N'3', N'10', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065004', N'Shadow-Killer of Blood', N'1', N'1', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065005', N'Wraith Claw of Blood', N'1', N'1', N'3', N'10', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065006', N'Deneb of Blood', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065007', N'Typhon of Blood', N'1', N'1', N'3', N'10', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065008', N'Radeath of Blood', N'1', N'1', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065009', N'Improved Radeath', N'1', N'1', N'3', N'10', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065102', N'Delicate Cat foot of Blood', N'1', N'1', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065104', N'Delicate Shadow Killer of Blood', N'1', N'1', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065106', N'Delicate Wraith Claw', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065108', N'Delicate High Enneagram', N'1', N'1', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611065109', N'Exquisite Improved Radeath', N'1', N'1', N'3', N'10', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066001', N'Bagh Nakh', N'1', N'1', N'2', N'10', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066002', N'Kaiser Knuckle', N'1', N'1', N'2', N'10', N'6', N'35', N'10000', N'1', N'3', N'1', N'2000', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066003', N'Fenrir', N'1', N'1', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066004', N'Vladimyr', N'1', N'1', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066005', N'Asura', N'1', N'1', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066006', N'Kunbrogi', N'1', N'1', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066007', N'Demon-Hunt', N'1', N'1', N'2', N'10', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066103', N'Fell Fenrir', N'1', N'1', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066104', N'Fell Vladimyr', N'1', N'1', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066105', N'Asura Mutant', N'1', N'1', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066106', N'Kunbrogi Mutant', N'1', N'1', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066205', N'Asura the Other', N'1', N'1', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611066206', N'Kunbrogi ''The Other''', N'1', N'1', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071000', N'Great Training Revolver', N'1', N'0', N'0', N'11', N'1', N'1', N'100000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071001', N'Great Derringer', N'1', N'0', N'0', N'11', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071002', N'Great Auto Revolver', N'1', N'0', N'0', N'11', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071003', N'Great Light Revolver', N'1', N'0', N'0', N'11', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071004', N'Great Pepperbox', N'1', N'0', N'0', N'11', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071005', N'Great Flintlock', N'1', N'0', N'0', N'11', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071006', N'Great Flush Revolver', N'1', N'0', N'0', N'11', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071007', N'Great Stinger', N'1', N'0', N'0', N'11', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071008', N'Great Deck Pistol', N'1', N'0', N'0', N'11', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071009', N'Great Blaster', N'1', N'0', N'0', N'11', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071010', N'Great Burning Revolver', N'1', N'0', N'0', N'11', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071011', N'Great Gauss Revolver', N'1', N'0', N'0', N'11', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071012', N'Great Imperial Revolver', N'1', N'0', N'0', N'11', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071013', N'Great Magnum Revolver', N'1', N'0', N'0', N'11', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071014', N'Great Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071015', N'Great Matchlock', N'1', N'0', N'0', N'11', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071016', N'Great Chinook Revolver', N'1', N'0', N'0', N'11', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071017', N'Great Slugger', N'1', N'0', N'0', N'11', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071018', N'Great Precise Pistol', N'1', N'0', N'0', N'11', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611071019', N'Improved Nebula Revolver', N'1', N'0', N'0', N'11', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072001', N'Great Derringer', N'1', N'0', N'0', N'11', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072002', N'Great Auto Revolver', N'1', N'0', N'0', N'11', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072003', N'Great Light Revolver', N'1', N'0', N'0', N'11', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072004', N'Great Pepperbox', N'1', N'0', N'0', N'11', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072005', N'Great Flintlock', N'1', N'0', N'0', N'11', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072006', N'Great Flush Revolver', N'1', N'0', N'0', N'11', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072007', N'Great Stinger', N'1', N'0', N'0', N'11', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072008', N'Great Deck Pistol', N'1', N'0', N'0', N'11', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072009', N'Great Blaster', N'1', N'0', N'0', N'11', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072010', N'Great Burning Revolver', N'1', N'0', N'0', N'11', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072011', N'Great Gauss Revolver', N'1', N'0', N'0', N'11', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072012', N'Great Imperial Revolver', N'1', N'0', N'0', N'11', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072013', N'Great Magnum Revolver', N'1', N'0', N'0', N'11', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072014', N'Great Snub-Nosed Revolver', N'1', N'0', N'0', N'11', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072015', N'Great Matchlock', N'1', N'0', N'0', N'11', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072016', N'Great Chinook Revolver', N'1', N'0', N'0', N'11', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072017', N'Great Slugger', N'1', N'0', N'0', N'11', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072018', N'Great Precise Pistol', N'1', N'0', N'0', N'11', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611072019', N'Improved Nebula Revolver', N'1', N'0', N'0', N'11', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074001', N'Great Peashooter', N'1', N'1', N'5', N'11', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074002', N'Great Bolt Action', N'1', N'1', N'5', N'11', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074003', N'Great Six Shooter', N'1', N'1', N'5', N'11', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074004', N'Great Spitfire', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074005', N'Great Gravity', N'1', N'1', N'5', N'11', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074006', N'Great Pearl-Handled Pistol', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074007', N'Great Burning Wom', N'1', N'1', N'5', N'11', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074008', N'Great Abyss Rhapsody', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074009', N'Great Hand Cannon', N'1', N'1', N'5', N'11', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074010', N'Great Beretto', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074011', N'Improved Dark Raven', N'1', N'1', N'5', N'11', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074104', N'Delicate Stead Body of Blood', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074106', N'Delicate Straight Shooter of Blood', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074108', N'Delicate Dirge of Blood', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074110', N'Delicate Beretto of Blood', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611074111', N'Exquisite Improved Dark Raven', N'1', N'1', N'5', N'11', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075001', N'Great Counter-Attack', N'1', N'1', N'3', N'11', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'305')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075002', N'Great Peacemaker', N'1', N'1', N'3', N'11', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075003', N'Great Sharp Shooter', N'1', N'1', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075004', N'Great 44 Magnum', N'1', N'1', N'3', N'11', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075005', N'Great Salamander', N'1', N'1', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075006', N'Great Desert Eagle', N'1', N'1', N'3', N'11', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075007', N'Great Valentine', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075008', N'Great King Cobra', N'1', N'1', N'3', N'11', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075009', N'Great Webley', N'1', N'1', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075010', N'Improved Hell Singer', N'1', N'1', N'3', N'11', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075103', N'Delicate Sharp Shooter of Blood', N'1', N'1', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075105', N'Delicate Salamander of Blood', N'1', N'1', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075107', N'Delicate Valentine of Blood', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075109', N'Delicate High Stylish', N'1', N'1', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611075110', N'Exquisite Improved Hell Singer', N'1', N'1', N'3', N'11', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076001', N'Stardust', N'1', N'1', N'2', N'11', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076002', N'Luminus', N'1', N'1', N'2', N'11', N'6', N'35', N'10000', N'1', N'3', N'1', N'2000', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076003', N'Berkana', N'1', N'1', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076004', N'Desperado', N'1', N'1', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076005', N'Twilight', N'1', N'1', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076006', N'Crua', N'1', N'1', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076007', N'Raymond', N'1', N'1', N'2', N'11', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076103', N'Fell Berkana', N'1', N'1', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076104', N'Fell Desperado', N'1', N'1', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076105', N'Twilight Mutant', N'1', N'1', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076106', N'Cruach Mutant', N'1', N'1', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076205', N'Twilight the Other', N'1', N'1', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611076206', N'Cruach ''The Other''', N'1', N'1', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081000', N'Great Musket', N'1', N'0', N'0', N'12', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081001', N'Great Kentucky Musket', N'1', N'0', N'0', N'12', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'353')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081002', N'Great Mighty Musket', N'1', N'0', N'0', N'12', N'1', N'16', N'7000', N'0', N'0', N'1', N'2200', N'2920', N'481')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081003', N'Great Roaring Musket', N'1', N'0', N'0', N'12', N'1', N'19', N'7000', N'0', N'0', N'1', N'2200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081004', N'Great Sharps Musket', N'1', N'0', N'0', N'12', N'1', N'22', N'7000', N'0', N'0', N'1', N'2200', N'4780', N'788')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081005', N'Great Blazing Musket', N'1', N'0', N'0', N'12', N'1', N'25', N'7000', N'0', N'0', N'1', N'2200', N'5860', N'966')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081006', N'Great Blunderbuss', N'1', N'0', N'0', N'12', N'1', N'28', N'7000', N'0', N'0', N'1', N'2200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081007', N'Great Wild Musket', N'1', N'0', N'0', N'12', N'1', N'31', N'7000', N'0', N'0', N'1', N'2200', N'8340', N'1376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081008', N'Great Ornate Rifle', N'1', N'0', N'0', N'12', N'1', N'34', N'7000', N'0', N'0', N'1', N'2200', N'9730', N'1606')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081009', N'Great Rumanian Carbine', N'1', N'0', N'0', N'12', N'1', N'37', N'7000', N'0', N'0', N'1', N'2200', N'11220', N'1851')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081010', N'Great Searing Musket', N'1', N'0', N'0', N'12', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081011', N'Great Breech-Loader', N'1', N'0', N'0', N'12', N'1', N'43', N'7000', N'0', N'0', N'1', N'2200', N'14530', N'2398')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081012', N'Great Wheellock Rifle', N'1', N'0', N'0', N'12', N'1', N'46', N'7000', N'0', N'0', N'1', N'2200', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081013', N'Great Coach Gun', N'1', N'0', N'0', N'12', N'1', N'49', N'7000', N'0', N'0', N'1', N'2200', N'18250', N'3011')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081014', N'Great Juarez Special', N'1', N'0', N'0', N'12', N'1', N'52', N'7000', N'0', N'0', N'1', N'2200', N'20260', N'3342')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611081015', N'Improved Pult Musket', N'1', N'0', N'0', N'12', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082001', N'Great Musket', N'1', N'0', N'0', N'12', N'2', N'11', N'7500', N'0', N'3', N'1', N'2200', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082002', N'Great Kentucky Musket', N'1', N'0', N'0', N'12', N'2', N'14', N'7500', N'0', N'3', N'1', N'2200', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082003', N'Great Mighty Musket', N'1', N'0', N'0', N'12', N'2', N'17', N'7500', N'0', N'3', N'1', N'2200', N'3400', N'561')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082004', N'Great Roaring Musket', N'1', N'0', N'0', N'12', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082005', N'Great Sharps Musket', N'1', N'0', N'0', N'12', N'2', N'23', N'7500', N'0', N'3', N'1', N'2200', N'5440', N'897')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082006', N'Great Blazing Musket', N'1', N'0', N'0', N'12', N'2', N'26', N'7500', N'0', N'3', N'1', N'2200', N'6630', N'1094')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082007', N'Great Blunderbuss', N'1', N'0', N'0', N'12', N'2', N'29', N'7500', N'0', N'3', N'1', N'2200', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082008', N'Great Wild Musket', N'1', N'0', N'0', N'12', N'2', N'32', N'7500', N'0', N'3', N'1', N'2200', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082009', N'Great Ornate Rifle', N'1', N'0', N'0', N'12', N'2', N'35', N'7500', N'0', N'3', N'1', N'2200', N'10850', N'1790')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082010', N'Great Rumanian Carbine', N'1', N'0', N'0', N'12', N'2', N'38', N'7500', N'0', N'3', N'1', N'2200', N'12480', N'2059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082011', N'Great Searing Musket', N'1', N'0', N'0', N'12', N'2', N'41', N'7500', N'0', N'3', N'1', N'2200', N'14220', N'2346')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082012', N'Great Breech-Loader', N'1', N'0', N'0', N'12', N'2', N'44', N'7500', N'0', N'3', N'1', N'2200', N'16070', N'2652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082013', N'Great Wheellock Rifle', N'1', N'0', N'0', N'12', N'2', N'47', N'7500', N'0', N'3', N'1', N'2200', N'18030', N'2975')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082014', N'Great Coach Gun', N'1', N'0', N'0', N'12', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082015', N'Great Juarez Special', N'1', N'0', N'0', N'12', N'2', N'53', N'7500', N'0', N'3', N'1', N'2200', N'22270', N'3675')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611082016', N'Improved Pult Musket', N'1', N'0', N'0', N'12', N'2', N'56', N'7500', N'0', N'3', N'1', N'2200', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084001', N'Great Lever action', N'1', N'1', N'5', N'12', N'4', N'10', N'8000', N'1', N'3', N'1', N'2200', N'1760', N'290')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084002', N'Great Enfield', N'1', N'1', N'5', N'12', N'4', N'15', N'8000', N'1', N'3', N'1', N'2200', N'3140', N'518')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084003', N'Great Saddleback', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084004', N'Great Sidewinder', N'1', N'1', N'5', N'12', N'4', N'25', N'8000', N'1', N'3', N'1', N'2200', N'6950', N'1147')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084005', N'Great Benneli', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084006', N'Great Fire Cracker', N'1', N'1', N'5', N'12', N'4', N'35', N'8000', N'1', N'3', N'1', N'2200', N'12130', N'2002')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084007', N'Great Blessed Musket', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084008', N'Great Fever-shot', N'1', N'1', N'5', N'12', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084009', N'Great Contractor', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084010', N'Improved The Veteran', N'1', N'1', N'5', N'12', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084103', N'Delicate Saddleback of Blood', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084105', N'Delicate Benelli of Blood', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084107', N'Delicate Stike of Blood', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084109', N'Delicate Contractor of Blood', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611084110', N'Exquisite Improved The Veteran', N'1', N'1', N'5', N'12', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085001', N'Great Hawk Eye', N'1', N'1', N'3', N'12', N'5', N'15', N'9000', N'1', N'3', N'1', N'2200', N'3310', N'546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085002', N'Great Sonic Boom', N'1', N'1', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085003', N'Great Eraser', N'1', N'1', N'3', N'12', N'5', N'25', N'9000', N'1', N'3', N'1', N'2200', N'7320', N'1207')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085004', N'Great Liberator', N'1', N'1', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085005', N'Great Deluxe Carbine', N'1', N'1', N'3', N'12', N'5', N'35', N'9000', N'1', N'3', N'1', N'2200', N'12770', N'2107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085006', N'Great Hell Fire', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085007', N'Black Rose of Blood', N'1', N'1', N'3', N'12', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085008', N'Great Conqueror', N'1', N'1', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085009', N'Improved Serpent', N'1', N'1', N'3', N'12', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085102', N'Delicate Sonic Boom of Blood', N'1', N'1', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085104', N'Delicate Liberator of Blood', N'1', N'1', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1626')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085106', N'Delicate Hell Fire of Blood', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085108', N'Delicate High Trace', N'1', N'1', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611085109', N'Exquisite Improved Serpent', N'1', N'1', N'3', N'12', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086001', N'Phlogiston', N'1', N'1', N'2', N'12', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086002', N'Resistance', N'1', N'1', N'2', N'12', N'6', N'35', N'10000', N'1', N'3', N'1', N'2200', N'13410', N'2213')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086003', N'Hagaras', N'1', N'1', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086004', N'Boreas', N'1', N'1', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086005', N'Jephiroth', N'1', N'1', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086006', N'Crimson Swayer', N'1', N'1', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086007', N'Flainus', N'1', N'1', N'2', N'12', N'6', N'60', N'10000', N'1', N'3', N'1', N'2200', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086103', N'Fell Hagaras', N'1', N'1', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086104', N'Fell Boreas', N'1', N'1', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20250', N'3341')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086105', N'Zepiros Mutant', N'1', N'1', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086106', N'Crimson Swear Mutant', N'1', N'1', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086205', N'Zepiros the Other', N'1', N'1', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611086206', N'Crimson Swear ''The Other''', N'1', N'1', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091000', N'Practice Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091001', N'Cracked Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091002', N'Disrupt Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091003', N'Fragmentary Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091004', N'Asymmetric Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091005', N'Distinctive Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091006', N'Duplicate Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091007', N'Identical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091008', N'Symmetrical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091009', N'Congenial Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091010', N'Vibrant Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091011', N'Crucial Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091012', N'Pessimistic Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091013', N'Rigid Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091014', N'Harsh Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091015', N'Frantical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091016', N'Dormant Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091017', N'Revengers Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091018', N'Transient Twin Swords of Blood', N'1', N'0', N'0', N'55', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611091019', N'Improved Destructive Twin Swords', N'1', N'0', N'0', N'55', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092001', N'Cracked Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092002', N'Disrupt Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092003', N'Fragmentary Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092004', N'Asymmetric Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092005', N'Distinctive Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092006', N'Duplicate Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092007', N'Identical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092008', N'Symmetrical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092009', N'Congenial Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092010', N'Vibrant Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092011', N'Crucial Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092012', N'Pessimistic Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092013', N'Rigid Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092014', N'Harsh Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092015', N'Frantical Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092016', N'Dormant Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092017', N'Revengers Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092018', N'Transient Twin Swords of Blood', N'1', N'0', N'0', N'55', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611092019', N'Improved Destructive Twin Swords', N'1', N'0', N'0', N'55', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094001', N'Ailantus of Blood', N'1', N'1', N'5', N'55', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094002', N'Ramnus of Blood', N'1', N'1', N'5', N'55', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094003', N'Diospiros of Blood', N'1', N'1', N'5', N'55', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094004', N'Illex of Blood', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094005', N'Actinidia of Blood', N'1', N'1', N'5', N'55', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094006', N'Betula of Blood', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094007', N'Prunus of Blood', N'1', N'1', N'5', N'55', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094008', N'Kapainus of Blood', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094009', N'Vitis of Blood', N'1', N'1', N'5', N'55', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094010', N'Ribeth of Blood', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094011', N'Improved Strobe', N'1', N'1', N'5', N'55', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094104', N'Delicate Illex of Blood', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094106', N'Delicate Betula of Blood', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094108', N'Delicate Kapainus of Blood', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094110', N'Delicate Ribeth of Blood', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611094111', N'Exquisite Improved Strobe', N'1', N'1', N'5', N'55', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095001', N'Ronisera of Blood', N'1', N'1', N'3', N'55', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095002', N'Laisium of Blood', N'1', N'1', N'3', N'55', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095003', N'Castanopsis of Blood', N'1', N'1', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095004', N'Cudrania of Blood', N'1', N'1', N'3', N'55', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095005', N'Yuonimus of Blood', N'1', N'1', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095006', N'Deucia of Blood', N'1', N'1', N'3', N'55', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095007', N'Kornus of Blood', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095008', N'Paderia of Blood', N'1', N'1', N'3', N'55', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095009', N'Acer of Blood', N'1', N'1', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095010', N'Improved Lithido', N'1', N'1', N'3', N'55', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095103', N'Delicate Castanopsis of Blood', N'1', N'1', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095105', N'Delicate Yuonimus of Blood', N'1', N'1', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095107', N'Delicate Kornus of Blood', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095109', N'Delicate Acer of Blood', N'1', N'1', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611095110', N'Exquisite Improved Lithido', N'1', N'1', N'3', N'55', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096001', N'Ritzia', N'1', N'1', N'2', N'55', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1698')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096002', N'Querkus', N'1', N'1', N'2', N'55', N'6', N'35', N'10000', N'1', N'3', N'1', N'2000', N'13410', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096003', N'Salix', N'1', N'1', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096004', N'Katalfa', N'1', N'1', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096005', N'Ligustrum', N'1', N'1', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096006', N'Occidental', N'1', N'1', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4819')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096007', N'Twin Swords Epic', N'1', N'1', N'2', N'55', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096103', N'Fell Salix', N'1', N'1', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096104', N'Fell Katalfa', N'1', N'1', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096105', N'Ligustrum Mutant', N'1', N'1', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096106', N'Occidental Mutant', N'1', N'1', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096205', N'Ligustrum the Other', N'1', N'1', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611096206', N'Occidental ''The Other', N'1', N'1', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111000', N'Practice Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'1', N'7000', N'0', N'0', N'1', N'2500', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111001', N'Chaotic Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'1', N'7000', N'0', N'0', N'1', N'2500', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111002', N'Divine Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'4', N'7000', N'0', N'0', N'1', N'2500', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111003', N'Glitters Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'7', N'7000', N'0', N'0', N'1', N'2500', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111004', N'Twilight Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'10', N'7000', N'0', N'0', N'1', N'2500', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111005', N'Edge Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'13', N'7000', N'0', N'0', N'1', N'2500', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111006', N'Modest Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'16', N'7000', N'0', N'0', N'1', N'2500', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111007', N'Mighty Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'19', N'7000', N'0', N'0', N'1', N'2500', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111008', N'Vested Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'22', N'7000', N'0', N'0', N'1', N'2500', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111009', N'Latigent Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'25', N'7000', N'0', N'0', N'1', N'2500', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111010', N'Shrewd Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'28', N'7000', N'0', N'0', N'1', N'2500', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111011', N'Avent Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'31', N'7000', N'0', N'0', N'1', N'2500', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111012', N'Precious Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'34', N'7000', N'0', N'0', N'1', N'2500', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111013', N'Astute Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'37', N'7000', N'0', N'0', N'1', N'2500', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111014', N'Ardent Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111015', N'Intense Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'43', N'7000', N'0', N'0', N'1', N'2500', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111016', N'Tanned Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'46', N'7000', N'0', N'0', N'1', N'2500', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111017', N'Permanent Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'49', N'7000', N'0', N'0', N'1', N'2500', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111018', N'Fever Glaive of Blood', N'1', N'0', N'0', N'56', N'1', N'52', N'7000', N'0', N'0', N'1', N'2500', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611111019', N'Improved Zucky Glaive', N'1', N'0', N'0', N'56', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112001', N'Chaotic Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'2', N'7500', N'0', N'3', N'1', N'2500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112002', N'Divine Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'5', N'7500', N'0', N'3', N'1', N'2500', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112003', N'Glitters Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'8', N'7500', N'0', N'3', N'1', N'2500', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112004', N'Twilight Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'11', N'7500', N'0', N'3', N'1', N'2500', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112005', N'Edge Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'14', N'7500', N'0', N'3', N'1', N'2500', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112006', N'Modest Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'17', N'7500', N'0', N'3', N'1', N'2500', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112007', N'Mighty Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112008', N'Vested Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'23', N'7500', N'0', N'3', N'1', N'2500', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112009', N'Latigent Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'26', N'7500', N'0', N'3', N'1', N'2500', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112010', N'Shrewd Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'29', N'7500', N'0', N'3', N'1', N'2500', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112011', N'Avent Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'32', N'7500', N'0', N'3', N'1', N'2500', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112012', N'Precious Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'35', N'7500', N'0', N'3', N'1', N'2500', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112013', N'Astute Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'38', N'7500', N'0', N'3', N'1', N'2500', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112014', N'Ardent Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'41', N'7500', N'0', N'3', N'1', N'2500', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112015', N'Intense Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'44', N'7500', N'0', N'3', N'1', N'2500', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112016', N'Tanned Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'47', N'7500', N'0', N'3', N'1', N'2500', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112017', N'Permanent Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112018', N'Fever Glaive of Blood', N'1', N'0', N'0', N'56', N'2', N'53', N'7500', N'0', N'3', N'1', N'2500', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611112019', N'Improved Zucky Glaive', N'1', N'0', N'0', N'56', N'2', N'56', N'7500', N'0', N'3', N'1', N'2500', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114001', N'Aeumops of Blood', N'1', N'1', N'5', N'56', N'4', N'5', N'8000', N'1', N'3', N'1', N'2500', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114002', N'Peramequinum of Blood', N'1', N'1', N'5', N'56', N'4', N'10', N'8000', N'1', N'3', N'1', N'2500', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114003', N'Hippocideridae of Blood', N'1', N'1', N'5', N'56', N'4', N'15', N'8000', N'1', N'3', N'1', N'2500', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114004', N'Juvatus of Blood', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114005', N'Leucogaster of Blood', N'1', N'1', N'5', N'56', N'4', N'25', N'8000', N'1', N'3', N'1', N'2500', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114006', N'Aserodon of Blood', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114007', N'Rapinesqui of Blood', N'1', N'1', N'5', N'56', N'4', N'35', N'8000', N'1', N'3', N'1', N'2500', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114008', N'Marianus of Blood', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114009', N'Shirof Terra of Blood', N'1', N'1', N'5', N'56', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114010', N'Megarotis of Blood', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114011', N'Improved Plekotooth', N'1', N'1', N'5', N'56', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114104', N'Delicate Juvatus of Blood', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114106', N'Delicate Aserodon of Blood', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114108', N'Delicate Marianus of Blood', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114110', N'Delicate Megarotis of Blood', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611114111', N'Exquisite Improved Plekotooth', N'1', N'1', N'5', N'56', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115001', N'Borealis of Blood', N'1', N'1', N'3', N'56', N'5', N'10', N'9000', N'1', N'3', N'1', N'2500', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115002', N'Pormosus of Blood', N'1', N'1', N'3', N'56', N'5', N'15', N'9000', N'1', N'3', N'1', N'2500', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115003', N'Seminolus of Blood', N'1', N'1', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115004', N'Philotis of Blood', N'1', N'1', N'3', N'56', N'5', N'25', N'9000', N'1', N'3', N'1', N'2500', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115005', N'Pipistrelus of Blood', N'1', N'1', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115006', N'Gigas of Blood', N'1', N'1', N'3', N'56', N'5', N'35', N'9000', N'1', N'3', N'1', N'2500', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115007', N'Megarophila of Blood', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115008', N'Cinereus of Blood', N'1', N'1', N'3', N'56', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115009', N'Noctivegans of Blood', N'1', N'1', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115010', N'Improved Kairoptera', N'1', N'1', N'3', N'56', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115103', N'Delicate Seminolus of Blood', N'1', N'1', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115105', N'Delicate Pipistrelus of Blood', N'1', N'1', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115107', N'Delicate Megarophila of Blood', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115109', N'Delicate Noctivegans of Blood', N'1', N'1', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611115110', N'Exquisite Improved Kairoptera', N'1', N'1', N'3', N'56', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116001', N'Nicteride', N'1', N'1', N'2', N'56', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1698')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116002', N'Puskus', N'1', N'1', N'2', N'56', N'6', N'35', N'10000', N'1', N'3', N'1', N'2500', N'13410', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116003', N'Molosidae', N'1', N'1', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116004', N'Eduderma', N'1', N'1', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116005', N'Maculatum', N'1', N'1', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116006', N'Mormoph', N'1', N'1', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4819')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116007', N'Glaive Epic', N'1', N'1', N'2', N'56', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116103', N'Fell Molosidae', N'1', N'1', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116104', N'Fell Eduderma', N'1', N'1', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116105', N'Maculatum Mutant', N'1', N'1', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116106', N'Mormoph Mutant', N'1', N'1', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116205', N'Maculatum the Other', N'1', N'1', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611116206', N'Mormoph ''The Other''', N'1', N'1', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131000', N'Practice Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'1', N'7000', N'0', N'0', N'1', N'2300', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131001', N'Archaic Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'1', N'7000', N'0', N'0', N'1', N'2300', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131002', N'Scars Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'4', N'7000', N'0', N'0', N'1', N'2300', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131003', N'Primitive Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'7', N'7000', N'0', N'0', N'1', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131004', N'Binding Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'10', N'7000', N'0', N'0', N'1', N'2300', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131005', N'Compact Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'13', N'7000', N'0', N'0', N'1', N'2300', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131006', N'Colossal Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'16', N'7000', N'0', N'0', N'1', N'2300', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131007', N'Formidable Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'19', N'7000', N'0', N'0', N'1', N'2300', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131008', N'Flawless Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'22', N'7000', N'0', N'0', N'1', N'2300', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131009', N'Robust Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'25', N'7000', N'0', N'0', N'1', N'2300', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131010', N'Bulk Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'28', N'7000', N'0', N'0', N'1', N'2300', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131011', N'Frexius Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'31', N'7000', N'0', N'0', N'1', N'2300', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131012', N'Vast Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'34', N'7000', N'0', N'0', N'1', N'2300', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131013', N'Harsh Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'37', N'7000', N'0', N'0', N'1', N'2300', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131014', N'Immense Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131015', N'Barbaric Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'43', N'7000', N'0', N'0', N'1', N'2300', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131016', N'Herz Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'46', N'7000', N'0', N'0', N'1', N'2300', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131017', N'Punch Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'49', N'7000', N'0', N'0', N'1', N'2300', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131018', N'Slaves Demon Hands of Blood', N'1', N'0', N'0', N'57', N'1', N'52', N'7000', N'0', N'0', N'1', N'2300', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611131019', N'Improved Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132001', N'Archaic Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'2', N'7500', N'0', N'3', N'1', N'2300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132002', N'Scars Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'5', N'7500', N'0', N'3', N'1', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132003', N'Primitive Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'8', N'7500', N'0', N'3', N'1', N'2300', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132004', N'Binding Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'11', N'7500', N'0', N'3', N'1', N'2300', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132005', N'Compact Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'14', N'7500', N'0', N'3', N'1', N'2300', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132006', N'Colossal Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'17', N'7500', N'0', N'3', N'1', N'2300', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132007', N'Formidable Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132008', N'Flawless Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'23', N'7500', N'0', N'3', N'1', N'2300', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132009', N'Robust Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'26', N'7500', N'0', N'3', N'1', N'2300', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132010', N'Bulk Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'29', N'7500', N'0', N'3', N'1', N'2300', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132011', N'Frexius Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'32', N'7500', N'0', N'3', N'1', N'2300', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132012', N'Vast Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'35', N'7500', N'0', N'3', N'1', N'2300', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132013', N'Harsh Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'38', N'7500', N'0', N'3', N'1', N'2300', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132014', N'Immense Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'41', N'7500', N'0', N'3', N'1', N'2300', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132015', N'Barbaric Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'44', N'7500', N'0', N'3', N'1', N'2300', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132016', N'Herz Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'47', N'7500', N'0', N'3', N'1', N'2300', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132017', N'Punch Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132018', N'Slaves Demon Hands of Blood', N'1', N'0', N'0', N'57', N'2', N'53', N'7500', N'0', N'3', N'1', N'2300', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611132019', N'Improved Skold Heavy Gauntlets', N'1', N'0', N'0', N'57', N'2', N'56', N'7500', N'0', N'3', N'1', N'2300', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134001', N'Lepture of Blood', N'1', N'1', N'5', N'57', N'4', N'5', N'8000', N'1', N'3', N'1', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134002', N'Malpinus of Blood', N'1', N'1', N'5', N'57', N'4', N'10', N'8000', N'1', N'3', N'1', N'2300', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134003', N'Adustus of Blood', N'1', N'1', N'5', N'57', N'4', N'15', N'8000', N'1', N'3', N'1', N'2300', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134004', N'Pumosus of Blood', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134005', N'Hesperius of Blood', N'1', N'1', N'5', N'57', N'4', N'25', N'8000', N'1', N'3', N'1', N'2300', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134006', N'Infuscus of Blood', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134007', N'Jabanikus of Blood', N'1', N'1', N'5', N'57', N'4', N'35', N'8000', N'1', N'3', N'1', N'2300', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134008', N'Premaebus of Blood', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134009', N'Sumatransis of Blood', N'1', N'1', N'5', N'57', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134010', N'Dookunensis of Blood', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134011', N'Improved Diceros', N'1', N'1', N'5', N'57', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134104', N'Delicate Pumosus of Blood', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134106', N'Delicate Infuscus of Blood', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134108', N'Delicate Premaebus of Blood', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134110', N'Delicate Dookunensis of Blood', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611134111', N'Exquisite Improved Diceros', N'1', N'1', N'5', N'57', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135001', N'Aureus of Blood', N'1', N'1', N'3', N'57', N'5', N'10', N'9000', N'1', N'3', N'1', N'2300', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135002', N'Aljerensis of Blood', N'1', N'1', N'3', N'57', N'5', N'15', N'9000', N'1', N'3', N'1', N'2300', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135003', N'Antus of Blood', N'1', N'1', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135004', N'Vea of Blood', N'1', N'1', N'3', N'57', N'5', N'25', N'9000', N'1', N'3', N'1', N'2300', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135005', N'Crusemani of Blood', N'1', N'1', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135006', N'Indicus of Blood', N'1', N'1', N'3', N'57', N'5', N'35', N'9000', N'1', N'3', N'1', N'2300', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135007', N'Rupaster of Blood', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135008', N'Naria of Blood', N'1', N'1', N'3', N'57', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135009', N'Liparius of Blood', N'1', N'1', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135010', N'Improved Bison', N'1', N'1', N'3', N'57', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135103', N'Delicate Antus of Blood', N'1', N'1', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135105', N'Delicate Crusemani of Blood', N'1', N'1', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135107', N'Delicate Rupaster of Blood', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135109', N'Delicate Liparius of Blood', N'1', N'1', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611135110', N'Exquisite Improved Bison', N'1', N'1', N'3', N'57', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136001', N'Richaon', N'1', N'1', N'2', N'57', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1698')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136002', N'Vilerey', N'1', N'1', N'2', N'57', N'6', N'35', N'10000', N'1', N'3', N'1', N'2300', N'13410', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136003', N'Lanixer', N'1', N'1', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136004', N'Dingo', N'1', N'1', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136005', N'Lupers', N'1', N'1', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136006', N'Wolverine', N'1', N'1', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4819')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136007', N'Epic Demon Hands', N'1', N'1', N'2', N'57', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136103', N'Fell Lanixer', N'1', N'1', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136104', N'Fell Dingo', N'1', N'1', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136105', N'Lupers Mutant', N'1', N'1', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136106', N'Wolverine Mutant', N'1', N'1', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136205', N'Lupers the Other', N'1', N'1', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611136206', N'Wolverine ''The Other''', N'1', N'1', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151000', N'Practice Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151001', N'Classic Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'1', N'7000', N'0', N'0', N'1', N'2000', N'100', N'17')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151002', N'Unsigned Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'4', N'7000', N'0', N'0', N'1', N'2000', N'460', N'76')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151003', N'Untrained Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'7', N'7000', N'0', N'0', N'1', N'2000', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151004', N'Qualified Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'10', N'7000', N'0', N'0', N'1', N'2000', N'1480', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151005', N'Preeminent Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'13', N'7000', N'0', N'0', N'1', N'2000', N'2140', N'351')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151006', N'Celebrated Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'16', N'7000', N'0', N'0', N'1', N'2000', N'2920', N'479')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151007', N'Exotic Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'19', N'7000', N'0', N'0', N'1', N'2000', N'3790', N'622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151008', N'Bustling Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'22', N'7000', N'0', N'0', N'1', N'2000', N'4780', N'784')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151009', N'Versatile Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'25', N'7000', N'0', N'0', N'1', N'2000', N'5860', N'962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151010', N'Adroit Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'28', N'7000', N'0', N'0', N'1', N'2000', N'7040', N'1155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151011', N'Brisk Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'31', N'7000', N'0', N'0', N'1', N'2000', N'8340', N'1368')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151012', N'Integral Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'34', N'7000', N'0', N'0', N'1', N'2000', N'9730', N'1596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151013', N'Avid Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'37', N'7000', N'0', N'0', N'1', N'2000', N'11220', N'1841')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151014', N'Sleek Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2103')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151015', N'Rain Rose Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'43', N'7000', N'0', N'0', N'1', N'2000', N'14530', N'2383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151016', N'Bited Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'46', N'7000', N'0', N'0', N'1', N'2000', N'16340', N'2680')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151017', N'Stagnant Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'49', N'7000', N'0', N'0', N'1', N'2000', N'18250', N'2993')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151018', N'Stressed Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'1', N'52', N'7000', N'0', N'0', N'1', N'2000', N'20260', N'3323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611151019', N'Improved Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152001', N'Classic Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'2', N'7500', N'0', N'3', N'1', N'2000', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152002', N'Unsigned Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'5', N'7500', N'0', N'3', N'1', N'2000', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152003', N'Untrained Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'8', N'7500', N'0', N'3', N'1', N'2000', N'1160', N'191')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152004', N'Qualified Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'11', N'7500', N'0', N'3', N'1', N'2000', N'1790', N'294')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152005', N'Preeminent Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'14', N'7500', N'0', N'3', N'1', N'2000', N'2540', N'417')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152006', N'Celebrated Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'17', N'7500', N'0', N'3', N'1', N'2000', N'3400', N'558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152007', N'Exotic Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'717')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152008', N'Bustling Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'23', N'7500', N'0', N'3', N'1', N'2000', N'5440', N'893')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152009', N'Versatile Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'26', N'7500', N'0', N'3', N'1', N'2000', N'6630', N'1088')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152010', N'Adroit Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'29', N'7500', N'0', N'3', N'1', N'2000', N'7930', N'1301')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152011', N'Brisk Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'32', N'7500', N'0', N'3', N'1', N'2000', N'9330', N'1531')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152012', N'Integral Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'35', N'7500', N'0', N'3', N'1', N'2000', N'10850', N'1780')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152013', N'Avid Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'38', N'7500', N'0', N'3', N'1', N'2000', N'12480', N'2047')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152014', N'Sleek Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'41', N'7500', N'0', N'3', N'1', N'2000', N'14220', N'2333')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152015', N'Rain Rose Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'44', N'7500', N'0', N'3', N'1', N'2000', N'16070', N'2636')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152016', N'Bited Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'47', N'7500', N'0', N'3', N'1', N'2000', N'18030', N'2957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152017', N'Stagnant Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152018', N'Stressed Weapon Bag of Blood', N'1', N'0', N'0', N'58', N'2', N'53', N'7500', N'0', N'3', N'1', N'2000', N'22270', N'3653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611152019', N'Improved Vonoff Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'56', N'7500', N'0', N'3', N'1', N'2000', N'24570', N'4054')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154001', N'Polifemus of Blood', N'1', N'1', N'5', N'58', N'4', N'5', N'8000', N'1', N'3', N'1', N'2000', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154002', N'Repidokelis of Blood', N'1', N'1', N'5', N'58', N'4', N'10', N'8000', N'1', N'3', N'1', N'2000', N'1760', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154003', N'Kelodina of Blood', N'1', N'1', N'5', N'58', N'4', N'15', N'8000', N'1', N'3', N'1', N'2000', N'3140', N'515')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154004', N'Clemis of Blood', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154005', N'Testudinidae of Blood', N'1', N'1', N'5', N'58', N'4', N'25', N'8000', N'1', N'3', N'1', N'2000', N'6950', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154006', N'Crisemis of Blood', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154007', N'Kelidra of Blood', N'1', N'1', N'5', N'58', N'4', N'35', N'8000', N'1', N'3', N'1', N'2000', N'12130', N'1990')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154008', N'Sudaemidura of Blood', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154009', N'Kinosternon of Blood', N'1', N'1', N'5', N'58', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3064')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154010', N'Onata of Blood', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154011', N'Improved Musk Bag', N'1', N'1', N'5', N'58', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154104', N'Delicate Clemis of Blood', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154106', N'Delicate Crisemis of Blood', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1537')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154108', N'Delicate Sudaemidura of Blood', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2498')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154110', N'Delicate Onata of Blood', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3684')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611154111', N'Exquisite Improved Musk Bag', N'1', N'1', N'5', N'58', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155001', N'Terapene of Blood', N'1', N'1', N'3', N'58', N'5', N'10', N'9000', N'1', N'3', N'1', N'2000', N'1850', N'304')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155002', N'Malaclemis of Blood', N'1', N'1', N'3', N'58', N'5', N'15', N'9000', N'1', N'3', N'1', N'2000', N'3310', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155003', N'Lactopris of Blood', N'1', N'1', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155004', N'Kelis of Blood', N'1', N'1', N'3', N'58', N'5', N'25', N'9000', N'1', N'3', N'1', N'2000', N'7320', N'1201')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155005', N'Hydromedusa of Blood', N'1', N'1', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155006', N'Xiokelon of Blood', N'1', N'1', N'3', N'58', N'5', N'35', N'9000', N'1', N'3', N'1', N'2000', N'12770', N'2095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155007', N'Midas of Blood', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155008', N'Kareta of Blood', N'1', N'1', N'3', N'58', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3225')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155009', N'Selgata of Blood', N'1', N'1', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155010', N'Improved Leather Bag', N'1', N'1', N'3', N'58', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155103', N'Delicate Lactopris of Blood', N'1', N'1', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155105', N'Delicate Hydromedusa of Blood', N'1', N'1', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1618')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155107', N'Delicate Midas of Blood', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155109', N'Delicate Selgata of Blood', N'1', N'1', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3877')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611155110', N'Exquisite Improved Leather Bag', N'1', N'1', N'3', N'58', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156001', N'Lactopris', N'1', N'1', N'2', N'58', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1698')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156002', N'Arakana', N'1', N'1', N'2', N'58', N'6', N'35', N'10000', N'1', N'3', N'1', N'2000', N'13410', N'2200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156003', N'Eljeyah', N'1', N'1', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156004', N'Serpentina', N'1', N'1', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156005', N'Maximiliani', N'1', N'1', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156006', N'Clemis', N'1', N'1', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4819')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156007', N'Weapon Bag Epic', N'1', N'1', N'2', N'58', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5629')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156103', N'Fell Eljeyah', N'1', N'1', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2761')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156104', N'Fell Serpentina', N'1', N'1', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156105', N'Maximiliani Mutant', N'1', N'1', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156106', N'Clemis Mutant', N'1', N'1', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156205', N'Maximiliani the Other', N'1', N'1', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4071')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'611156206', N'Clemis ''The Other''', N'1', N'1', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011001', N'Apprentice Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'1', N'5000', N'0', N'0', N'2', N'1400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011002', N'Fabric Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'1', N'5000', N'0', N'0', N'2', N'1400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011003', N'Linen Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'4', N'5000', N'0', N'0', N'2', N'1400', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011004', N'Fleece Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'7', N'5000', N'0', N'0', N'2', N'1400', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011005', N'Silky Yarn Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'10', N'5000', N'0', N'0', N'2', N'1400', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011006', N'Wool Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'13', N'5000', N'0', N'0', N'2', N'1400', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011007', N'Silk Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'16', N'5000', N'0', N'0', N'2', N'1400', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011008', N'Ram''s Wool Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'19', N'5000', N'0', N'0', N'2', N'1400', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011009', N'Muslin Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'22', N'5000', N'0', N'0', N'2', N'1400', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011010', N'Luna Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'25', N'5000', N'0', N'0', N'2', N'1400', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011011', N'Celestial Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'28', N'5000', N'0', N'0', N'2', N'1400', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011012', N'Mystical Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'31', N'5000', N'0', N'0', N'2', N'1400', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011013', N'Sorceress Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'34', N'5000', N'0', N'0', N'2', N'1400', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011014', N'Angora Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'37', N'5000', N'0', N'0', N'2', N'1400', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011015', N'Aramid Robe of Blood', N'1', N'0', N'0', N'1', N'1', N'40', N'5000', N'0', N'0', N'2', N'1400', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011016', N'Great Berber Robe', N'1', N'0', N'0', N'1', N'1', N'43', N'5000', N'0', N'0', N'2', N'1400', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011017', N'Great Brocade Robe', N'1', N'0', N'0', N'1', N'1', N'46', N'5000', N'0', N'0', N'2', N'1400', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011018', N'Great Doeskin Robe', N'1', N'0', N'0', N'1', N'1', N'49', N'5000', N'0', N'0', N'2', N'1400', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011019', N'Great Tartan Robe', N'1', N'0', N'0', N'1', N'1', N'52', N'5000', N'0', N'0', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612011020', N'Improved Weaving Robe', N'1', N'0', N'0', N'1', N'1', N'55', N'5000', N'0', N'0', N'2', N'1400', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012001', N'Fabric Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'2', N'5500', N'0', N'3', N'2', N'1400', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012002', N'Linen Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'5', N'5500', N'0', N'3', N'2', N'1400', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012003', N'Fleece Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'8', N'5500', N'0', N'3', N'2', N'1400', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012004', N'Silky Yarn Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'11', N'5500', N'0', N'3', N'2', N'1400', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012005', N'Wool Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'14', N'5500', N'0', N'3', N'2', N'1400', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012006', N'Silk Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'17', N'5500', N'0', N'3', N'2', N'1400', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012007', N'Ram''s Wool Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'20', N'5500', N'0', N'3', N'2', N'1400', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012008', N'Muslin Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'23', N'5500', N'0', N'3', N'2', N'1400', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012009', N'Luna Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'26', N'5500', N'0', N'3', N'2', N'1400', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012010', N'Celestial Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'29', N'5500', N'0', N'3', N'2', N'1400', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012011', N'Mystical Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'32', N'5500', N'0', N'3', N'2', N'1400', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012012', N'Sorceress Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'35', N'5500', N'0', N'3', N'2', N'1400', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012013', N'Angora Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'38', N'5500', N'0', N'3', N'2', N'1400', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012014', N'Aramid Robe of Blood', N'1', N'0', N'0', N'1', N'2', N'41', N'5500', N'0', N'3', N'2', N'1400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012015', N'Great Berber Robe', N'1', N'0', N'0', N'1', N'2', N'44', N'5500', N'0', N'3', N'2', N'1400', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012016', N'Great Brocade Robe', N'1', N'0', N'0', N'1', N'2', N'47', N'5500', N'0', N'3', N'2', N'1400', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012017', N'Great Doeskin Robe', N'1', N'0', N'0', N'1', N'2', N'50', N'5500', N'0', N'3', N'2', N'1400', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612012018', N'Great Tartan Robe', N'1', N'0', N'0', N'1', N'2', N'53', N'5500', N'0', N'3', N'2', N'1400', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014001', N'Lavish Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'6000', N'1', N'3', N'2', N'1400', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014002', N'Insidious Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'6000', N'1', N'3', N'2', N'1400', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014003', N'Exceptional Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'6000', N'1', N'3', N'2', N'1400', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014004', N'Fervid Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'6000', N'1', N'3', N'2', N'1400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014005', N'Nefarious Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'6000', N'1', N'3', N'2', N'1400', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014006', N'Diabolic Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'6000', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014007', N'Sacred Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'6000', N'1', N'3', N'2', N'1400', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014008', N'Devious Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'6000', N'1', N'3', N'2', N'1400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014009', N'Distinct Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'6000', N'1', N'3', N'2', N'1400', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014010', N'Taffeta Robe of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'6000', N'1', N'3', N'2', N'1400', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612014011', N'Improved Obscure Robe', N'1', N'1', N'5', N'1', N'4', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015001', N'Vital Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'6500', N'1', N'3', N'2', N'1400', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015002', N'Wisdom Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'6500', N'1', N'3', N'2', N'1400', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015003', N'Bentus Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015004', N'Raschel Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'6500', N'1', N'3', N'2', N'1400', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015005', N'Calico Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'6500', N'1', N'3', N'2', N'1400', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015006', N'Lumen Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'6500', N'1', N'3', N'2', N'1400', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015007', N'Starlight Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'6500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015008', N'Fluer Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'6500', N'1', N'3', N'2', N'1400', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015009', N'Pincord Robe of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'6500', N'1', N'3', N'2', N'1400', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015010', N'Improved Dusk Robe', N'1', N'1', N'3', N'1', N'5', N'55', N'6500', N'1', N'3', N'2', N'1400', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015102', N'Bloody Wisdom Robe', N'1', N'1', N'3', N'1', N'5', N'15', N'6500', N'1', N'3', N'2', N'1400', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015103', N'Bloody Ventus Robe', N'1', N'1', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015104', N'Bloody Silentium Robe', N'1', N'1', N'3', N'1', N'5', N'25', N'6500', N'1', N'3', N'2', N'1400', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015201', N'Shadow Bentus Robe', N'1', N'1', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612015202', N'Shadow Sirenchium Robe', N'1', N'1', N'3', N'1', N'5', N'25', N'6500', N'1', N'3', N'2', N'1400', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016001', N'Danu Robe', N'1', N'1', N'2', N'1', N'6', N'30', N'7000', N'1', N'3', N'2', N'1400', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016002', N'Morpheus Robe', N'1', N'1', N'2', N'1', N'6', N'35', N'7000', N'1', N'3', N'2', N'1400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016003', N'Memoria Robe', N'1', N'1', N'2', N'1', N'6', N'40', N'7000', N'1', N'3', N'2', N'1400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016004', N'Lindsey Robe', N'1', N'1', N'2', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016005', N'Grace Robe', N'1', N'1', N'2', N'1', N'6', N'50', N'7000', N'1', N'3', N'2', N'1400', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016006', N'Grace Robe', N'1', N'1', N'2', N'1', N'6', N'55', N'7000', N'1', N'3', N'2', N'1400', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016101', N'Bloody Danu Robe', N'1', N'1', N'2', N'1', N'6', N'30', N'7000', N'1', N'3', N'2', N'1400', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016102', N'Bloody Morphous Robe', N'1', N'1', N'2', N'1', N'6', N'35', N'7000', N'1', N'3', N'2', N'1400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016103', N'Bloody Memoria Robe', N'1', N'1', N'2', N'1', N'6', N'40', N'7000', N'1', N'3', N'2', N'1400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016104', N'Bloody Lingee Robe', N'1', N'1', N'2', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016105', N'Bloody Grace Robe', N'1', N'1', N'2', N'1', N'6', N'50', N'7000', N'1', N'3', N'2', N'1400', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016106', N'Bloody Dominator Robe', N'1', N'1', N'2', N'1', N'6', N'55', N'7000', N'1', N'3', N'2', N'1400', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016203', N'Shadow Danu Robe', N'1', N'1', N'2', N'1', N'6', N'30', N'7000', N'1', N'3', N'2', N'1400', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016204', N'Shadow Morpheus Robe', N'1', N'1', N'2', N'1', N'6', N'35', N'7000', N'1', N'3', N'2', N'1400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016205', N'Shadow Memoria Robe', N'1', N'1', N'2', N'1', N'6', N'40', N'7000', N'1', N'3', N'2', N'1400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016206', N'Shadow Linsey Robe', N'1', N'1', N'2', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016207', N'Shadow Grace Robe', N'1', N'1', N'2', N'1', N'6', N'50', N'7000', N'1', N'3', N'2', N'1400', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612016208', N'Shadow Dominator Cloth Robe', N'1', N'1', N'2', N'1', N'6', N'55', N'7000', N'1', N'3', N'2', N'1400', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021001', N'Apprentice Leather Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'1', N'5000', N'0', N'0', N'2', N'1900', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021002', N'Light Leather Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'1', N'5000', N'0', N'0', N'2', N'1900', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021003', N'Leather Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'4', N'5000', N'0', N'0', N'2', N'1900', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021004', N'Quilted Leather Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'7', N'5000', N'0', N'0', N'2', N'1900', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021005', N'Studded Leather Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'10', N'5000', N'0', N'0', N'2', N'1900', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021006', N'Hunter Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'13', N'5000', N'0', N'0', N'2', N'1900', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021007', N'Carp Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'16', N'5000', N'0', N'0', N'2', N'1900', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021008', N'Suede Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'19', N'5000', N'0', N'0', N'2', N'1900', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021009', N'Nubuck Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'22', N'5000', N'0', N'0', N'2', N'1900', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021010', N'Slink Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'25', N'5000', N'0', N'0', N'2', N'1900', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021011', N'Hide Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'28', N'5000', N'0', N'0', N'2', N'1900', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021012', N'Buckskin Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'31', N'5000', N'0', N'0', N'2', N'1900', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021013', N'Shagreen Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'34', N'5000', N'0', N'0', N'2', N'1900', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021014', N'Lamellar Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'37', N'5000', N'0', N'0', N'2', N'1900', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021015', N'Brigandine Armor of Blood', N'1', N'0', N'0', N'2', N'1', N'40', N'5000', N'0', N'0', N'2', N'1900', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021016', N'Great Lorica Armor', N'1', N'0', N'0', N'2', N'1', N'43', N'5000', N'0', N'0', N'2', N'1900', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021017', N'Great Swollen Leather Armor', N'1', N'0', N'0', N'2', N'1', N'46', N'5000', N'0', N'0', N'2', N'1900', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021018', N'Great Sinful Leather Armor', N'1', N'0', N'0', N'2', N'1', N'49', N'5000', N'0', N'0', N'2', N'1900', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021019', N'Great Holy Leather Armor', N'1', N'0', N'0', N'2', N'1', N'52', N'5000', N'0', N'0', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612021020', N'Improved Artisanal Leather Armor', N'1', N'0', N'0', N'2', N'1', N'55', N'5000', N'0', N'0', N'2', N'1900', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022001', N'Light Leather Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'2', N'5500', N'0', N'3', N'2', N'1900', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022002', N'Leather Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'5', N'5500', N'0', N'3', N'2', N'1900', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022003', N'Quilted Leather Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'8', N'5500', N'0', N'3', N'2', N'1900', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022004', N'Studded Leather Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'11', N'5500', N'0', N'3', N'2', N'1900', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022005', N'Hunter Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'14', N'5500', N'0', N'3', N'2', N'1900', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022006', N'Carp Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'17', N'5500', N'0', N'3', N'2', N'1900', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022007', N'Suede Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'20', N'5500', N'0', N'3', N'2', N'1900', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022008', N'Nubuck Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'23', N'5500', N'0', N'3', N'2', N'1900', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022009', N'Slink Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'26', N'5500', N'0', N'3', N'2', N'1900', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022010', N'Hide Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'29', N'5500', N'0', N'3', N'2', N'1900', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022011', N'Buckskin Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'32', N'5500', N'0', N'3', N'2', N'1900', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022012', N'Shagreen Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'35', N'5500', N'0', N'3', N'2', N'1900', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022013', N'Lamellar Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'38', N'5500', N'0', N'3', N'2', N'1900', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022014', N'Brigandine Armor of Blood', N'1', N'0', N'0', N'2', N'2', N'41', N'5500', N'0', N'3', N'2', N'1900', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022015', N'Great Lorica Armor', N'1', N'0', N'0', N'2', N'2', N'44', N'5500', N'0', N'3', N'2', N'1900', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022016', N'Great Swollen Leather Armor', N'1', N'0', N'0', N'2', N'2', N'47', N'5500', N'0', N'3', N'2', N'1900', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022017', N'Great Sinful Leather Armor', N'1', N'0', N'0', N'2', N'2', N'50', N'5500', N'0', N'3', N'2', N'1900', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612022018', N'Great Holy Leather Armor', N'1', N'0', N'0', N'2', N'2', N'53', N'5500', N'0', N'3', N'2', N'1900', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024001', N'Authentic Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'6000', N'1', N'3', N'2', N'1900', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024002', N'Camouflage Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'6000', N'1', N'3', N'2', N'1900', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024003', N'Illicit Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'6000', N'1', N'3', N'2', N'1900', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024004', N'Rugged Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'6000', N'1', N'3', N'2', N'1900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024005', N'Dread Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'6000', N'1', N'3', N'2', N'1900', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024006', N'Tough Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'6000', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024007', N'Haken-hide Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'6000', N'1', N'3', N'2', N'1900', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024008', N'Combat Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'6000', N'1', N'3', N'2', N'1900', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024009', N'Genuine Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'6000', N'1', N'3', N'2', N'1900', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024010', N'Superior Leather Armor of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'6000', N'1', N'3', N'2', N'1900', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612024011', N'Improved Posh Leather Armor', N'1', N'1', N'5', N'2', N'4', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025001', N'Tanned Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'6500', N'1', N'3', N'2', N'1900', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025002', N'Rawhide Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'6500', N'1', N'3', N'2', N'1900', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025003', N'Demonic Leather Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025004', N'Praetorian Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'6500', N'1', N'3', N'2', N'1900', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025005', N'Lacrimal Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'6500', N'1', N'3', N'2', N'1900', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025006', N'Eminent Leather Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'6500', N'1', N'3', N'2', N'1900', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025007', N'Aquarius Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'6500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025008', N'Rogue Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'6500', N'1', N'3', N'2', N'1900', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025009', N'Fianna Armor of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'6500', N'1', N'3', N'2', N'1900', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025010', N'Improved Arcane Leather Armor', N'1', N'1', N'3', N'2', N'5', N'55', N'6500', N'1', N'3', N'2', N'1900', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025102', N'Bloody Dried Leather Armor', N'1', N'1', N'3', N'2', N'5', N'15', N'6500', N'1', N'3', N'2', N'1900', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025103', N'Bloody Descend Leather Armor', N'1', N'1', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025104', N'Bloody Predator Leather Armor', N'1', N'1', N'3', N'2', N'5', N'25', N'6500', N'1', N'3', N'2', N'1900', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025201', N'Shadow Descend Leather Armor', N'1', N'1', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612025202', N'Shadow Praeterita Leather Armor', N'1', N'1', N'3', N'2', N'5', N'25', N'6500', N'1', N'3', N'2', N'1900', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026001', N'Airgetlam Leather Armor', N'1', N'1', N'2', N'2', N'6', N'30', N'7000', N'1', N'3', N'2', N'1900', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026002', N'Lir Leather Armor', N'1', N'1', N'2', N'2', N'6', N'35', N'7000', N'1', N'3', N'2', N'1900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026003', N'Mir Leather Armor', N'1', N'1', N'2', N'2', N'6', N'40', N'7000', N'1', N'3', N'2', N'1900', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026004', N'Ellodi Leather Armor', N'1', N'1', N'2', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026005', N'Blast Armor', N'1', N'1', N'2', N'2', N'6', N'50', N'7000', N'1', N'3', N'2', N'1900', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026006', N'Blast Armor', N'1', N'1', N'2', N'2', N'6', N'55', N'7000', N'1', N'3', N'2', N'1900', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026101', N'Bloody Alrget-Lamh Leather Armor', N'1', N'1', N'2', N'2', N'6', N'30', N'7000', N'1', N'3', N'2', N'1900', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026102', N'Bloody Lyre Leather Armor', N'1', N'1', N'2', N'2', N'6', N'35', N'7000', N'1', N'3', N'2', N'1900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026103', N'Bloody Mir Leather Armor', N'1', N'1', N'2', N'2', N'6', N'40', N'7000', N'1', N'3', N'2', N'1900', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026104', N'Bloody Elody Leather Armor', N'1', N'1', N'2', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026105', N'Bloody Blast Armor', N'1', N'1', N'2', N'2', N'6', N'50', N'7000', N'1', N'3', N'2', N'1900', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026106', N'Bloody Levices Armor', N'1', N'1', N'2', N'2', N'6', N'55', N'7000', N'1', N'3', N'2', N'1900', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026203', N'Shadow Airgetlam Leather Armor', N'1', N'1', N'2', N'2', N'6', N'30', N'7000', N'1', N'3', N'2', N'1900', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026204', N'Shadow Lir Leather Armor', N'1', N'1', N'2', N'2', N'6', N'35', N'7000', N'1', N'3', N'2', N'1900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026205', N'Shadow Mir Leather Armor', N'1', N'1', N'2', N'2', N'6', N'40', N'7000', N'1', N'3', N'2', N'1900', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026206', N'Shadow Elody Leather Armor', N'1', N'1', N'2', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026207', N'Shadow Blast Armor', N'1', N'1', N'2', N'2', N'6', N'50', N'7000', N'1', N'3', N'2', N'1900', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612026208', N'Shadow Levices Armor', N'1', N'1', N'2', N'2', N'6', N'55', N'7000', N'1', N'3', N'2', N'1900', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031001', N'Apprentice Chain Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'1', N'5000', N'0', N'0', N'2', N'3000', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031002', N'Ringed Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'1', N'5000', N'0', N'0', N'2', N'3000', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031003', N'Chain Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'4', N'5000', N'0', N'0', N'2', N'3000', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031004', N'Wire Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'7', N'5000', N'0', N'0', N'2', N'3000', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031005', N'Hunter Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'10', N'5000', N'0', N'0', N'2', N'3000', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031006', N'Battle Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'13', N'5000', N'0', N'0', N'2', N'3000', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031007', N'Devout Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'16', N'5000', N'0', N'0', N'2', N'3000', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031008', N'Banded Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'19', N'5000', N'0', N'0', N'2', N'3000', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031009', N'Linked Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'22', N'5000', N'0', N'0', N'2', N'3000', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031010', N'Splinted Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'25', N'5000', N'0', N'0', N'2', N'3000', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031011', N'Rivet Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'28', N'5000', N'0', N'0', N'2', N'3000', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031012', N'Venetian Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'31', N'5000', N'0', N'0', N'2', N'3000', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031013', N'Arquebus Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'34', N'5000', N'0', N'0', N'2', N'3000', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031014', N'Acorn Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'37', N'5000', N'0', N'0', N'2', N'3000', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031015', N'Aventail Mail of Blood', N'1', N'0', N'0', N'3', N'1', N'40', N'5000', N'0', N'0', N'2', N'3000', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031016', N'Great Chain Mail', N'1', N'0', N'0', N'3', N'1', N'43', N'5000', N'0', N'0', N'2', N'3000', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031017', N'Great Genovese Mail', N'1', N'0', N'0', N'3', N'1', N'46', N'5000', N'0', N'0', N'2', N'3000', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031018', N'Great Peltman Chain Mail', N'1', N'0', N'0', N'3', N'1', N'49', N'5000', N'0', N'0', N'2', N'3000', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031019', N'Great Uniform Mail', N'1', N'0', N'0', N'3', N'1', N'52', N'5000', N'0', N'0', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612031020', N'Improved Concours Chain Mail', N'1', N'0', N'0', N'3', N'1', N'55', N'5000', N'0', N'0', N'2', N'3000', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032001', N'Ringed Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'2', N'5500', N'0', N'3', N'2', N'3000', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032002', N'Chain Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'5', N'5500', N'0', N'3', N'2', N'3000', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032003', N'Wire Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'8', N'5500', N'0', N'3', N'2', N'3000', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032004', N'Hunter Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'11', N'5500', N'0', N'3', N'2', N'3000', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032005', N'Battle Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'14', N'5500', N'0', N'3', N'2', N'3000', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032006', N'Devout Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'17', N'5500', N'0', N'3', N'2', N'3000', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032007', N'Banded Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'20', N'5500', N'0', N'3', N'2', N'3000', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032008', N'Linked Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'23', N'5500', N'0', N'3', N'2', N'3000', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032009', N'Splinted Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'26', N'5500', N'0', N'3', N'2', N'3000', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032010', N'Rivet Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'29', N'5500', N'0', N'3', N'2', N'3000', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032011', N'Venetian Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'32', N'5500', N'0', N'3', N'2', N'3000', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032012', N'Arquebus Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'35', N'5500', N'0', N'3', N'2', N'3000', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032013', N'Acorn Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'38', N'5500', N'0', N'3', N'2', N'3000', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032014', N'Aventail Mail of Blood', N'1', N'0', N'0', N'3', N'2', N'41', N'5500', N'0', N'3', N'2', N'3000', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032015', N'Great Chain Mail', N'1', N'0', N'0', N'3', N'2', N'44', N'5500', N'0', N'3', N'2', N'3000', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032016', N'Great Genovese Mail', N'1', N'0', N'0', N'3', N'2', N'47', N'5500', N'0', N'3', N'2', N'3000', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032017', N'Great Peltman Chain Mail', N'1', N'0', N'0', N'3', N'2', N'50', N'5500', N'0', N'3', N'2', N'3000', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612032018', N'Great Uniform Mail', N'1', N'0', N'0', N'3', N'2', N'53', N'5500', N'0', N'3', N'2', N'3000', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034001', N'Gritty Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'6000', N'1', N'3', N'2', N'3000', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034002', N'Heavy Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'6000', N'1', N'3', N'2', N'3000', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034003', N'Ultimate Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'6000', N'1', N'3', N'2', N'3000', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034004', N'Brisk Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'6000', N'1', N'3', N'2', N'3000', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034005', N'Bound Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'6000', N'1', N'3', N'2', N'3000', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034006', N'Secure Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'6000', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034007', N'Devout Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'6000', N'1', N'3', N'2', N'3000', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034008', N'Solid Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'6000', N'1', N'3', N'2', N'3000', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034009', N'Discarded Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'6000', N'1', N'3', N'2', N'3000', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034010', N'Engraved Chain Mail of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'6000', N'1', N'3', N'2', N'3000', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612034011', N'Improved Cure Chain Mail', N'1', N'1', N'5', N'3', N'4', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035001', N'Dense Chain Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'6500', N'1', N'3', N'2', N'3000', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035002', N'Burnished Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'6500', N'1', N'3', N'2', N'3000', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035003', N'Ribbed Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035004', N'Arcane Chain Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'6500', N'1', N'3', N'2', N'3000', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035005', N'Ashen Chain Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'6500', N'1', N'3', N'2', N'3000', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035006', N'Placidus Chain Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'6500', N'1', N'3', N'2', N'3000', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035007', N'Armadillo Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'6500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035008', N'Bulwark Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'6500', N'1', N'3', N'2', N'3000', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035009', N'Cardiff Chain Mail of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'6500', N'1', N'3', N'2', N'3000', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035010', N'Improved Armed Chain Mail', N'1', N'1', N'3', N'3', N'5', N'55', N'6500', N'1', N'3', N'2', N'3000', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035102', N'Bloody Pleasure Chain Mail', N'1', N'1', N'3', N'3', N'5', N'15', N'6500', N'1', N'3', N'2', N'3000', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035103', N'Bloody Rebellion Chain Mail', N'1', N'1', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035104', N'Bloody Velum Chain Mail', N'1', N'1', N'3', N'3', N'5', N'25', N'6500', N'1', N'3', N'2', N'3000', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035201', N'Shadow Riberion Chainmail', N'1', N'1', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612035202', N'Shadow Velum Chainmail', N'1', N'1', N'3', N'3', N'5', N'25', N'6500', N'1', N'3', N'2', N'3000', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036001', N'Ecne Chain Mail', N'1', N'1', N'2', N'3', N'6', N'30', N'7000', N'1', N'3', N'2', N'3000', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036002', N'Jamel Ducob Chain Mail', N'1', N'1', N'2', N'3', N'6', N'35', N'7000', N'1', N'3', N'2', N'3000', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036003', N'Badb Catha Chain Mail', N'1', N'1', N'2', N'3', N'6', N'40', N'7000', N'1', N'3', N'2', N'3000', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036004', N'Hinchi Chain Mail', N'1', N'1', N'2', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036005', N'Soul Eater''s Chainmail', N'1', N'1', N'2', N'3', N'6', N'50', N'7000', N'1', N'3', N'2', N'3000', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036006', N'Soul Eater''s Chainmail', N'1', N'1', N'2', N'3', N'6', N'55', N'7000', N'1', N'3', N'2', N'3000', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036101', N'Bloody Ecne Chain Mail', N'1', N'1', N'2', N'3', N'6', N'30', N'7000', N'1', N'3', N'2', N'3000', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036102', N'Bloody Jamelducov Chain Mail', N'1', N'1', N'2', N'3', N'6', N'35', N'7000', N'1', N'3', N'2', N'3000', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036103', N'Bloody Badhdh Cath Chain Mail', N'1', N'1', N'2', N'3', N'6', N'40', N'7000', N'1', N'3', N'2', N'3000', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036104', N'Bloody Hinche Chain Mail', N'1', N'1', N'2', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036105', N'Bloody Soul-Eater Chain Mail', N'1', N'1', N'2', N'3', N'6', N'50', N'7000', N'1', N'3', N'2', N'3000', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036106', N'Bloody Silver Tinge Mail', N'1', N'1', N'2', N'3', N'6', N'55', N'7000', N'1', N'3', N'2', N'3000', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036203', N'Shadow Ecne Chainmail', N'1', N'1', N'2', N'3', N'6', N'30', N'7000', N'1', N'3', N'2', N'3000', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036204', N'Shadow Jamel Ducob Chainmail', N'1', N'1', N'2', N'3', N'6', N'35', N'7000', N'1', N'3', N'2', N'3000', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036205', N'Shadow Babd Catha Chainmail', N'1', N'1', N'2', N'3', N'6', N'40', N'7000', N'1', N'3', N'2', N'3000', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036206', N'Shadow Hinchi Chainmail', N'1', N'1', N'2', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036207', N'Shadow Soul Eater''s Chainmail', N'1', N'1', N'2', N'3', N'6', N'50', N'7000', N'1', N'3', N'2', N'3000', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612036208', N'Shadow Silver Tinge Mail', N'1', N'1', N'2', N'3', N'6', N'55', N'7000', N'1', N'3', N'2', N'3000', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041001', N'Apprentice Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'1', N'5000', N'0', N'0', N'2', N'5700', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041002', N'Prelic Armor of Blood', N'1', N'0', N'0', N'4', N'1', N'1', N'5000', N'0', N'0', N'2', N'5700', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041003', N'Padded Armor of Blood', N'1', N'0', N'0', N'4', N'1', N'4', N'5000', N'0', N'0', N'2', N'5700', N'220', N'36')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041004', N'Hauberk Armor of Blood', N'1', N'0', N'0', N'4', N'1', N'7', N'5000', N'0', N'0', N'2', N'5700', N'460', N'75')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041005', N'Scale Mail of Blood', N'1', N'0', N'0', N'4', N'1', N'10', N'5000', N'0', N'0', N'2', N'5700', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041006', N'Steel Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'13', N'5000', N'0', N'0', N'2', N'5700', N'1070', N'177')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041007', N'Spiral Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'16', N'5000', N'0', N'0', N'2', N'5700', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041008', N'Hoplite Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'19', N'5000', N'0', N'0', N'2', N'5700', N'1900', N'313')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041009', N'Full Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'22', N'5000', N'0', N'0', N'2', N'5700', N'2380', N'392')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041010', N'Ornate Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'25', N'5000', N'0', N'0', N'2', N'5700', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041011', N'Rune Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'28', N'5000', N'0', N'0', N'2', N'5700', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041012', N'Raven Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'31', N'5000', N'0', N'0', N'2', N'5700', N'4170', N'688')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041013', N'Castilian Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'34', N'5000', N'0', N'0', N'2', N'5700', N'4860', N'801')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041014', N'Baleog Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'37', N'5000', N'0', N'0', N'2', N'5700', N'5620', N'927')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041015', N'Drake Plate of Blood', N'1', N'0', N'0', N'4', N'1', N'40', N'5000', N'0', N'0', N'2', N'5700', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041016', N'Great Crysis Plate', N'1', N'0', N'0', N'4', N'1', N'43', N'5000', N'0', N'0', N'2', N'5700', N'7260', N'1197')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041017', N'Great Traviron Plate', N'1', N'0', N'0', N'4', N'1', N'46', N'5000', N'0', N'0', N'2', N'5700', N'8170', N'1348')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041018', N'Great Dragoon Plate', N'1', N'0', N'0', N'4', N'1', N'49', N'5000', N'0', N'0', N'2', N'5700', N'9130', N'1507')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041019', N'Great Reflective Plate', N'1', N'0', N'0', N'4', N'1', N'52', N'5000', N'0', N'0', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612041020', N'Improved Watcher''s Plate', N'1', N'0', N'0', N'4', N'1', N'55', N'5000', N'0', N'0', N'2', N'5700', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042001', N'Prelic Armor of Blood', N'1', N'0', N'0', N'4', N'2', N'2', N'5500', N'0', N'3', N'2', N'5700', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042002', N'Padded Armor of Blood', N'1', N'0', N'0', N'4', N'2', N'5', N'5500', N'0', N'3', N'2', N'5700', N'310', N'51')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042003', N'Hauberk Armor of Blood', N'1', N'0', N'0', N'4', N'2', N'8', N'5500', N'0', N'3', N'2', N'5700', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042004', N'Scale Mail of Blood', N'1', N'0', N'0', N'4', N'2', N'11', N'5500', N'0', N'3', N'2', N'5700', N'900', N'148')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042005', N'Steel Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'14', N'5500', N'0', N'3', N'2', N'5700', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042006', N'Spiral Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'17', N'5500', N'0', N'3', N'2', N'5700', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042007', N'Hoplite Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'20', N'5500', N'0', N'3', N'2', N'5700', N'2180', N'359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042008', N'Full Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'23', N'5500', N'0', N'3', N'2', N'5700', N'2720', N'448')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042009', N'Ornate Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'26', N'5500', N'0', N'3', N'2', N'5700', N'3320', N'547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042010', N'Rune Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'29', N'5500', N'0', N'3', N'2', N'5700', N'3960', N'653')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042011', N'Raven Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'32', N'5500', N'0', N'3', N'2', N'5700', N'4670', N'771')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042012', N'Castilian Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'35', N'5500', N'0', N'3', N'2', N'5700', N'5420', N'894')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042013', N'Baleog Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'38', N'5500', N'0', N'3', N'2', N'5700', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042014', N'Drake Plate of Blood', N'1', N'0', N'0', N'4', N'2', N'41', N'5500', N'0', N'3', N'2', N'5700', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042015', N'Great Crysis Plate', N'1', N'0', N'0', N'4', N'2', N'44', N'5500', N'0', N'3', N'2', N'5700', N'8030', N'1325')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042016', N'Great Traviron Plate', N'1', N'0', N'0', N'4', N'2', N'47', N'5500', N'0', N'3', N'2', N'5700', N'9010', N'1487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042017', N'Great Dragoon Plate', N'1', N'0', N'0', N'4', N'2', N'50', N'5500', N'0', N'3', N'2', N'5700', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612042018', N'Great Reflective Plate', N'1', N'0', N'0', N'4', N'2', N'53', N'5500', N'0', N'3', N'2', N'5700', N'11140', N'1838')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044001', N'Shining Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'6000', N'1', N'3', N'2', N'5700', N'350', N'58')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044002', N'Dazzling Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'6000', N'1', N'3', N'2', N'5700', N'870', N'144')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044003', N'Assault Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'6000', N'1', N'3', N'2', N'5700', N'1580', N'260')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044004', N'Gendarme Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'6000', N'1', N'3', N'2', N'5700', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044005', N'Enduring Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'6000', N'1', N'3', N'2', N'5700', N'3480', N'574')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044006', N'Jousting Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'6000', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044007', N'Stark Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'6000', N'1', N'3', N'2', N'5700', N'6060', N'999')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044008', N'Menacing Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'6000', N'1', N'3', N'2', N'5700', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044009', N'Hazardous Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'6000', N'1', N'3', N'2', N'5700', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044010', N'Expert Plate of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'6000', N'1', N'3', N'2', N'5700', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612044011', N'Improved Suspicious Plate', N'1', N'1', N'5', N'4', N'4', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045001', N'Doomed Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'6500', N'1', N'3', N'2', N'5700', N'920', N'151')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045002', N'Essential Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'6500', N'1', N'3', N'2', N'5700', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045003', N'Blazing Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045004', N'Infernal Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'6500', N'1', N'3', N'2', N'5700', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045005', N'Field Marshal Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'6500', N'1', N'3', N'2', N'5700', N'4930', N'814')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045006', N'Destined Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'6500', N'1', N'3', N'2', N'5700', N'6380', N'1052')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045007', N'Knightly Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'6500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045008', N'Fergana Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'6500', N'1', N'3', N'2', N'5700', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045009', N'Avernus Plate of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'6500', N'1', N'3', N'2', N'5700', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045010', N'Improved Flame Plate', N'1', N'1', N'3', N'4', N'5', N'55', N'6500', N'1', N'3', N'2', N'5700', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045102', N'Bloody Essential Plate', N'1', N'1', N'3', N'4', N'5', N'15', N'6500', N'1', N'3', N'2', N'5700', N'1660', N'273')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045103', N'Bloody Blaze Plate', N'1', N'1', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045104', N'Bloody Inferna Plate', N'1', N'1', N'3', N'4', N'5', N'25', N'6500', N'1', N'3', N'2', N'5700', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045201', N'Shadow Blaze Plate', N'1', N'1', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612045202', N'Shadow Infernal Plate', N'1', N'1', N'3', N'4', N'5', N'25', N'6500', N'1', N'3', N'2', N'5700', N'3660', N'603')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046001', N'Cruach Plate', N'1', N'1', N'2', N'4', N'6', N'30', N'7000', N'1', N'3', N'2', N'5700', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046002', N'Moyitura Plate', N'1', N'1', N'2', N'4', N'6', N'35', N'7000', N'1', N'3', N'2', N'5700', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046003', N'Poirot Plate', N'1', N'1', N'2', N'4', N'6', N'40', N'7000', N'1', N'3', N'2', N'5700', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046004', N'Banded Plate', N'1', N'1', N'2', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046005', N'Unbreakable Plate', N'1', N'1', N'2', N'4', N'6', N'50', N'7000', N'1', N'3', N'2', N'5700', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046006', N'Unbreakable Plate', N'1', N'1', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046101', N'Bloody Cruaich Plate', N'1', N'1', N'2', N'4', N'6', N'30', N'7000', N'1', N'3', N'2', N'5700', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046102', N'Bloody Moitura Plate', N'1', N'1', N'2', N'4', N'6', N'35', N'7000', N'1', N'3', N'2', N'5700', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046103', N'Bloody For War Plate', N'1', N'1', N'2', N'4', N'6', N'40', N'7000', N'1', N'3', N'2', N'5700', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046104', N'Bloody Bandeda Plate', N'1', N'1', N'2', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046105', N'Bloody Unbreakable Plate', N'1', N'1', N'2', N'4', N'6', N'50', N'7000', N'1', N'3', N'2', N'5700', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046106', N'Bloody Dual Prop Plate', N'1', N'1', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'13580', N'2241')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046107', N'Bloody Dual Prop Plate', N'1', N'1', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046203', N'Shadow Cruach Plate', N'1', N'1', N'2', N'4', N'6', N'30', N'7000', N'1', N'3', N'2', N'5700', N'5180', N'854')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046204', N'Shadow Moyitura Plate', N'1', N'1', N'2', N'4', N'6', N'35', N'7000', N'1', N'3', N'2', N'5700', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046205', N'Shadow Forwar Plate', N'1', N'1', N'2', N'4', N'6', N'40', N'7000', N'1', N'3', N'2', N'5700', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046206', N'Shadow Banded Plate', N'1', N'1', N'2', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10140', N'1673')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046207', N'Shadow Unbreakable Plate', N'1', N'1', N'2', N'4', N'6', N'50', N'7000', N'1', N'3', N'2', N'5700', N'11860', N'1957')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'612046208', N'Shadow Dual Prop Plate', N'1', N'1', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011001', N'Great Fabric Hood', N'1', N'0', N'0', N'1', N'1', N'2', N'3000', N'0', N'0', N'2', N'900', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011002', N'Great Linen Hood', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011003', N'Fleece Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'8', N'3000', N'0', N'0', N'2', N'900', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011004', N'Silky Yarn Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'11', N'3000', N'0', N'0', N'2', N'900', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011005', N'Wool Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'14', N'3000', N'0', N'0', N'2', N'900', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011006', N'Silk Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'17', N'3000', N'0', N'0', N'2', N'900', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011007', N'Ram''s Wool Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011008', N'Muslin Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'23', N'3000', N'0', N'0', N'2', N'900', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011009', N'Luna Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'26', N'3000', N'0', N'0', N'2', N'900', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011010', N'Celestial Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'29', N'3000', N'0', N'0', N'2', N'900', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011011', N'Mystical Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'32', N'3000', N'0', N'0', N'2', N'900', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011012', N'Sorceress Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011013', N'Angora Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'38', N'3000', N'0', N'0', N'2', N'900', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011014', N'Aramid Hood of Blood', N'1', N'0', N'0', N'1', N'1', N'41', N'3200', N'0', N'0', N'2', N'900', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011015', N'Great Berber Hood', N'1', N'0', N'0', N'1', N'1', N'44', N'3000', N'0', N'0', N'2', N'900', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011016', N'Great Brocade Hood', N'1', N'0', N'0', N'1', N'1', N'47', N'3200', N'0', N'0', N'2', N'900', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011017', N'Great Doeskin Hood', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613011018', N'Improved Weaving Hood', N'1', N'0', N'0', N'1', N'1', N'53', N'3000', N'0', N'0', N'2', N'900', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012001', N'Great Fabric Hood', N'1', N'0', N'0', N'1', N'2', N'3', N'3200', N'0', N'3', N'2', N'900', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012002', N'Great Linen Hood', N'1', N'0', N'0', N'1', N'2', N'6', N'3200', N'0', N'3', N'2', N'900', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012003', N'Fleece Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'9', N'3200', N'0', N'3', N'2', N'900', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012004', N'Silky Yarn Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'12', N'3200', N'0', N'3', N'2', N'900', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012005', N'Wool Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'15', N'3200', N'0', N'3', N'2', N'900', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012006', N'Silk Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'18', N'3200', N'0', N'3', N'2', N'900', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012007', N'Ram''s Wool Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'21', N'3200', N'0', N'3', N'2', N'900', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012008', N'Muslin Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'24', N'3200', N'0', N'3', N'2', N'900', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012009', N'Luna Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'27', N'3200', N'0', N'3', N'2', N'900', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012010', N'Celestial Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012011', N'Mystical Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'33', N'3200', N'0', N'3', N'2', N'900', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012012', N'Sorceress Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'36', N'3200', N'0', N'3', N'2', N'900', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012013', N'Angora Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'39', N'3200', N'0', N'3', N'2', N'900', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012014', N'Aramid Hood of Blood', N'1', N'0', N'0', N'1', N'2', N'42', N'3200', N'0', N'3', N'2', N'900', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012015', N'Great Berber Hood', N'1', N'0', N'0', N'1', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012016', N'Great Brocade Hood', N'1', N'0', N'0', N'1', N'2', N'48', N'3200', N'0', N'3', N'2', N'900', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012017', N'Great Doeskin Hood', N'1', N'0', N'0', N'1', N'2', N'51', N'3200', N'0', N'3', N'2', N'900', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613012018', N'Improved Nea Hood', N'1', N'0', N'0', N'1', N'2', N'54', N'3200', N'0', N'3', N'2', N'900', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014001', N'Lavish Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'3400', N'1', N'3', N'2', N'900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014002', N'Insidious Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'3400', N'1', N'3', N'2', N'900', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014003', N'Exceptional Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'3400', N'1', N'3', N'2', N'900', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014004', N'Fervid Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014005', N'Nefarious Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'3400', N'1', N'3', N'2', N'900', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014006', N'Diabolic Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014007', N'Sacred Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014008', N'Devious Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014009', N'Distinct Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014010', N'Taffeta Hood of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613014011', N'Improved Obscure Hood', N'1', N'1', N'5', N'1', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015001', N'Vital Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'3600', N'1', N'3', N'2', N'900', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015002', N'Wisdom Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015003', N'Bentus Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015004', N'Raschel Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015005', N'Calico Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015006', N'Lumen Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'3600', N'1', N'3', N'2', N'900', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015007', N'Starlight Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015008', N'Fluer Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015009', N'Pincord Hood of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015010', N'Improved Dusk Hood', N'1', N'1', N'3', N'1', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015102', N'Bloody Wisdom Hood', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015103', N'Bloody Ventus Hood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015104', N'Bloody Silentium Hood', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015201', N'Shadow Bentus Hood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613015202', N'Shadow Sirenchium Hood', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016001', N'Danu Hood', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016002', N'Morpheus Hood', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016003', N'Memoria Hood', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016004', N'Lindsey Hood', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016005', N'Grace Hood', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016006', N'Grace Hood', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016101', N'Bloody Danu Hood', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016102', N'Bloody Morphous Hood', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016103', N'Bloody Memoria Hood', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016104', N'Bloody Lingee Hood', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016105', N'Bloody Grace Hood', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016106', N'Blood Dominator Hood', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016203', N'Shadow Danu Hood', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016204', N'Shadow Morpheus Hood', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016205', N'Shadow Memoria Hood', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016206', N'Shadow Linsey Hood', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016207', N'Shadow Grace Hood', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613016208', N'Shadow Dominator Hood', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021001', N'Great Light Leather Cap', N'1', N'0', N'0', N'2', N'1', N'2', N'3000', N'0', N'0', N'2', N'1200', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021002', N'Great Leather Cap', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'1200', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021003', N'Quilted Leather Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'8', N'3000', N'0', N'0', N'2', N'1200', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021004', N'Studded Leather Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'11', N'3000', N'0', N'0', N'2', N'1200', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021005', N'Hunter Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'14', N'3000', N'0', N'0', N'2', N'1200', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021006', N'Carp Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'17', N'3000', N'0', N'0', N'2', N'1200', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021007', N'Suede Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'1200', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021008', N'Nubuck Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'23', N'3000', N'0', N'0', N'2', N'1200', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021009', N'Slink Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'26', N'3000', N'0', N'0', N'2', N'1200', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021010', N'Hide Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'29', N'3000', N'0', N'0', N'2', N'1200', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021011', N'Buckskin Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'32', N'3000', N'0', N'0', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021012', N'Shagreen Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'1200', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021013', N'Lamellar Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'38', N'3000', N'0', N'0', N'2', N'1200', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021014', N'Brigandine Cap of Blood', N'1', N'0', N'0', N'2', N'1', N'41', N'3000', N'0', N'0', N'2', N'1200', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021015', N'Great Lorica Cap', N'1', N'0', N'0', N'2', N'1', N'44', N'3000', N'0', N'0', N'2', N'1200', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021016', N'Great Swollen Leather Cap', N'1', N'0', N'0', N'2', N'1', N'47', N'3000', N'0', N'0', N'2', N'1200', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021017', N'Great Sinful Leather Cap', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'1200', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613021018', N'Improved Artisanal Leather Cap', N'1', N'0', N'0', N'2', N'1', N'53', N'3000', N'0', N'0', N'2', N'1200', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022001', N'Great Light Leather Cap', N'1', N'0', N'0', N'2', N'2', N'3', N'3200', N'0', N'3', N'2', N'1200', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022002', N'Great Leather Cap', N'1', N'0', N'0', N'2', N'2', N'6', N'3200', N'0', N'3', N'2', N'1200', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022003', N'Quilted Leather Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'9', N'3200', N'0', N'3', N'2', N'1200', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022004', N'Studded Leather Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'12', N'3200', N'0', N'3', N'2', N'1200', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022005', N'Hunter Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'15', N'3200', N'0', N'3', N'2', N'1200', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022006', N'Carp Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'18', N'3200', N'0', N'3', N'2', N'1200', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022007', N'Suede Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'21', N'3200', N'0', N'3', N'2', N'1200', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022008', N'Nubuck Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'24', N'3200', N'0', N'3', N'2', N'1200', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022009', N'Slink Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'27', N'3200', N'0', N'3', N'2', N'1200', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022010', N'Hide Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'30', N'3200', N'0', N'3', N'2', N'1200', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022011', N'Buckskin Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'33', N'3200', N'0', N'3', N'2', N'1200', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022012', N'Shagreen Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'36', N'3200', N'0', N'3', N'2', N'1200', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022013', N'Lamellar Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'39', N'3200', N'0', N'3', N'2', N'1200', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022014', N'Brigandine Cap of Blood', N'1', N'0', N'0', N'2', N'2', N'42', N'3200', N'0', N'3', N'2', N'1200', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022015', N'Great Lorica Cap', N'1', N'0', N'0', N'2', N'2', N'45', N'3200', N'0', N'3', N'2', N'1200', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022016', N'Great Swollen Leather Cap', N'1', N'0', N'0', N'2', N'2', N'48', N'3200', N'0', N'3', N'2', N'1200', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022017', N'Great Sinful Leather Cap', N'1', N'0', N'0', N'2', N'2', N'51', N'3200', N'0', N'3', N'2', N'1200', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613022018', N'Improved DS Leather Cap', N'1', N'0', N'0', N'2', N'2', N'54', N'3200', N'0', N'3', N'2', N'1200', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024001', N'Authentic Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'3400', N'1', N'3', N'2', N'1200', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024002', N'Camouflage Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'3400', N'1', N'3', N'2', N'1200', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024003', N'Illicit Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'3400', N'1', N'3', N'2', N'1200', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024004', N'Rugged Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'3400', N'1', N'3', N'2', N'1200', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024005', N'Dread Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'3400', N'1', N'3', N'2', N'1200', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024006', N'Tough Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'3400', N'1', N'3', N'2', N'1200', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024007', N'Haken-hide Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'1200', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024008', N'Combat Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'3400', N'1', N'3', N'2', N'1200', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024009', N'Genuine Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'3400', N'1', N'3', N'2', N'1200', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024010', N'Superior Leather Cap of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'3400', N'1', N'3', N'2', N'1200', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613024011', N'Improved Posh Leather Cap', N'1', N'1', N'5', N'2', N'4', N'55', N'3400', N'1', N'3', N'2', N'1200', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025001', N'Tanned Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'3600', N'1', N'3', N'2', N'1200', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025002', N'Rawhide Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'1200', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025003', N'Demonic Leather Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'1200', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025004', N'Praetorian Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'1200', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025005', N'Lacrimal Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'3600', N'1', N'3', N'2', N'1200', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025006', N'Eminent Leather Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'3600', N'1', N'3', N'2', N'1200', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025007', N'Aquarius Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'3600', N'1', N'3', N'2', N'1200', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025008', N'Rogue Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'3600', N'1', N'3', N'2', N'1200', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025009', N'Fianna Cap of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'3600', N'1', N'3', N'2', N'1200', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025010', N'Improved Arcane Leather Cap', N'1', N'1', N'3', N'2', N'5', N'55', N'3600', N'1', N'3', N'2', N'1200', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025102', N'Bloody Dried Leather Cap', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'1200', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025103', N'Bloody Descend Leather Cap', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'1200', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025104', N'Bloody Predator Leather Cap', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'1200', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025201', N'Shadow Descend Leather Cap', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'1200', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613025202', N'Shadow Praeterita Leather Cap', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'1200', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026001', N'Airgetlam Leather Cap', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'1200', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026002', N'Lir Leather Cap', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'1200', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026003', N'Mir Leather Cap', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'1200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026004', N'Ellodi Leather Cap', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'1200', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026005', N'Blast Leather Cap', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'1200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026006', N'Blast Leather Cap', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'1200', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026101', N'Bloody Alrget-Lamh Leather Cap', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'1200', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026102', N'Bloody Lyre Leather Cap', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'1200', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026103', N'Bloody Mir Leather Cap', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'1200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026104', N'Bloody Elody Leather Cap', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'1200', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026105', N'Bloody Blast Leather Cap', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'1200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026106', N'Bloody Levices Cap', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'1200', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026203', N'Shadow Airgetlam Leather Cap', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'1200', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026204', N'Shadow Lir Leather Cap', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'1200', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026205', N'Shadow Mir Leather Cap', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'1200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026206', N'Shadow Elody Leather Cap', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'1200', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026207', N'Shadow Blast Leather Cap', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'1200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613026208', N'Shadow Levices Cap', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'1200', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031001', N'Great Tedder Helm', N'1', N'0', N'0', N'3', N'1', N'2', N'3000', N'0', N'0', N'2', N'1800', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031002', N'Great Chain Helm', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'1800', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031003', N'Wire Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'8', N'3000', N'0', N'0', N'2', N'1800', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031004', N'Hunter Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'11', N'3000', N'0', N'0', N'2', N'1800', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031005', N'Battle Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'14', N'3000', N'0', N'0', N'2', N'1800', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031006', N'Devout Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'17', N'3000', N'0', N'0', N'2', N'1800', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031007', N'Banded Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'1800', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031008', N'Linked Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'23', N'3000', N'0', N'0', N'2', N'1800', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031009', N'Splinted Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'26', N'3000', N'0', N'0', N'2', N'1800', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031010', N'Rivet Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'29', N'3000', N'0', N'0', N'2', N'1800', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031011', N'Venetian Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'32', N'3000', N'0', N'0', N'2', N'1800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031012', N'Arquebus Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'1800', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031013', N'Acorn Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'38', N'3000', N'0', N'0', N'2', N'1800', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031014', N'Aventail Helm of Blood', N'1', N'0', N'0', N'3', N'1', N'41', N'3000', N'0', N'0', N'2', N'1800', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031015', N'Great Chain Helm', N'1', N'0', N'0', N'3', N'1', N'44', N'3000', N'0', N'0', N'2', N'1800', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031016', N'Great Genovese Helm', N'1', N'0', N'0', N'3', N'1', N'47', N'3000', N'0', N'0', N'2', N'1800', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031017', N'Great Peltman Chain Helm', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'1800', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613031018', N'Improved Concours Chain Helm', N'1', N'0', N'0', N'3', N'1', N'53', N'3000', N'0', N'0', N'2', N'1800', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032001', N'Great Tedder Helm', N'1', N'0', N'0', N'3', N'2', N'3', N'3200', N'0', N'3', N'2', N'1800', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032002', N'Great Chain Helm', N'1', N'0', N'0', N'3', N'2', N'6', N'3200', N'0', N'3', N'2', N'1800', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032003', N'Wire Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'9', N'3200', N'0', N'3', N'2', N'1800', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032004', N'Hunter Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'12', N'3200', N'0', N'3', N'2', N'1800', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032005', N'Battle Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'15', N'3200', N'0', N'3', N'2', N'1800', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032006', N'Devout Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'18', N'3200', N'0', N'3', N'2', N'1800', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032007', N'Banded Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'21', N'3200', N'0', N'3', N'2', N'1800', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032008', N'Linked Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'24', N'3200', N'0', N'3', N'2', N'1800', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032009', N'Splinted Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'27', N'3200', N'0', N'3', N'2', N'1800', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032010', N'Rivet Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'30', N'3200', N'0', N'3', N'2', N'1800', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032011', N'Venetian Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'33', N'3200', N'0', N'3', N'2', N'1800', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032012', N'Arquebus Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'36', N'3200', N'0', N'3', N'2', N'1800', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032013', N'Acorn Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'39', N'3200', N'0', N'3', N'2', N'1800', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032014', N'Aventail Helm of Blood', N'1', N'0', N'0', N'3', N'2', N'42', N'3200', N'0', N'3', N'2', N'1800', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032015', N'Great Chain Helm', N'1', N'0', N'0', N'3', N'2', N'45', N'3200', N'0', N'3', N'2', N'1800', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032016', N'Great Genovese Helm', N'1', N'0', N'0', N'3', N'2', N'48', N'3200', N'0', N'3', N'2', N'1800', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032017', N'Great Peltman Chain Helm', N'1', N'0', N'0', N'3', N'2', N'51', N'3200', N'0', N'3', N'2', N'1800', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613032018', N'Improved Natura Chain Helm', N'1', N'0', N'0', N'3', N'2', N'54', N'3200', N'0', N'3', N'2', N'1800', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034001', N'Gritty Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'3400', N'1', N'3', N'2', N'1800', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034002', N'Heavy Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'3400', N'1', N'3', N'2', N'1800', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034003', N'Ultimate Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'3400', N'1', N'3', N'2', N'1800', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034004', N'Brisk Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'3400', N'1', N'3', N'2', N'1800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034005', N'Bound Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'3400', N'1', N'3', N'2', N'1800', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034006', N'Secure Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'3400', N'1', N'3', N'2', N'1800', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034007', N'Devout Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'1800', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034008', N'Solid Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'3400', N'1', N'3', N'2', N'1800', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034009', N'Discarded Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'3400', N'1', N'3', N'2', N'1800', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034010', N'Engraved Helm of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'3400', N'1', N'3', N'2', N'1800', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613034011', N'Improved Cure Chain Helm', N'1', N'1', N'5', N'3', N'4', N'55', N'3400', N'1', N'3', N'2', N'1800', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035001', N'Dense Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'3600', N'1', N'3', N'2', N'1800', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035002', N'Burnished Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'1800', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035003', N'Ribbed Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035004', N'Arcane Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'1800', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035005', N'Ashen Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'3600', N'1', N'3', N'2', N'1800', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035006', N'Placidus Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'3600', N'1', N'3', N'2', N'1800', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035007', N'Armadillo Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'3600', N'1', N'3', N'2', N'1800', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035008', N'Bulwark Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'3600', N'1', N'3', N'2', N'1800', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035009', N'Cardiff Helm of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'3600', N'1', N'3', N'2', N'1800', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035010', N'Improved Armed Chain Helm', N'1', N'1', N'3', N'3', N'5', N'55', N'3600', N'1', N'3', N'2', N'1800', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035102', N'Bloody Pleasure Chain Helm', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'1800', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035103', N'Bloody Rebellion Chain Helm', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035104', N'Bloody Velum Chain Helm', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'1800', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035201', N'Shadow Riberion Chain Helm', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613035202', N'Shadow Velum Chain Helm', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'1800', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036001', N'Ecne Helm', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'1800', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036002', N'Jamel Ducob Helm', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'1800', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036003', N'Badb Catha Helm', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'1800', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036004', N'Hinchi Helm', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036005', N'Soul Eater''s Helm', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'1800', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036006', N'Soul Eater''s Chain Helm', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'1800', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036101', N'Bloody Ecne Helm', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'1800', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036102', N'Bloody Jamelducov Helm', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'1800', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036103', N'Bloody Badhdh Cath Helm', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'1800', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036104', N'Bloody Hinche Helm', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036105', N'Bloody Soul-Eater Helm', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'1800', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036106', N'Bloody Silver Tinge Helm', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'1800', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036203', N'Shadow Ecne Helm', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'1800', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036204', N'Shadow Jamel Ducob Helm', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'1800', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036205', N'Shadow Babd Catha Helm', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'1800', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036206', N'Shadow Hinchi Helm', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036207', N'Shadow Soul Eater''s Helm', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'1800', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613036208', N'Shadow Silver Tinge Helm', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'1800', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041001', N'Great Fryderyk War Helm', N'1', N'0', N'0', N'4', N'1', N'2', N'3000', N'0', N'0', N'2', N'3400', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041002', N'Great Padded War Helm', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'3400', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041003', N'Hauberk Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'8', N'3000', N'0', N'0', N'2', N'3400', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041004', N'Scale Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'11', N'3000', N'0', N'0', N'2', N'3400', N'560', N'92')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041005', N'Steel Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'14', N'3000', N'0', N'0', N'2', N'3400', N'800', N'132')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041006', N'Spiral Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'17', N'3000', N'0', N'0', N'2', N'3400', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041007', N'Hoplite Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'3400', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041008', N'Full Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'23', N'3000', N'0', N'0', N'2', N'3400', N'1700', N'280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041009', N'Ornate Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'26', N'3000', N'0', N'0', N'2', N'3400', N'2080', N'343')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041010', N'Rune Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'29', N'3000', N'0', N'0', N'2', N'3400', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041011', N'Raven Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'32', N'3000', N'0', N'0', N'2', N'3400', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041012', N'Castilian Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'3400', N'3410', N'563')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041013', N'Baleog Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'38', N'3000', N'0', N'0', N'2', N'3400', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041014', N'Drake Helm of Blood', N'1', N'0', N'0', N'4', N'1', N'41', N'3000', N'0', N'0', N'2', N'3400', N'4460', N'735')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041015', N'Great Crysis War Helm', N'1', N'0', N'0', N'4', N'1', N'44', N'3000', N'0', N'0', N'2', N'3400', N'5040', N'831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041016', N'Great Traviron War Helm', N'1', N'0', N'0', N'4', N'1', N'47', N'3000', N'0', N'0', N'2', N'3400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041017', N'Great Dragoon Helm', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'3400', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613041018', N'Shadow Watcher''s War Helm', N'1', N'0', N'0', N'4', N'1', N'53', N'3000', N'0', N'0', N'2', N'3400', N'6980', N'1152')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042001', N'Great Fryderyk War Helm', N'1', N'0', N'0', N'4', N'2', N'3', N'3200', N'0', N'3', N'2', N'3400', N'110', N'18')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042002', N'Great Padded War Helm', N'1', N'0', N'0', N'4', N'2', N'6', N'3200', N'0', N'3', N'2', N'3400', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042003', N'Hauberk Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'9', N'3200', N'0', N'3', N'2', N'3400', N'450', N'74')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042004', N'Scale Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'12', N'3200', N'0', N'3', N'2', N'3400', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042005', N'Steel Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'15', N'3200', N'0', N'3', N'2', N'3400', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042006', N'Spiral Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'18', N'3200', N'0', N'3', N'2', N'3400', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042007', N'Hoplite Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'21', N'3200', N'0', N'3', N'2', N'3400', N'1570', N'259')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042008', N'Full Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'24', N'3200', N'0', N'3', N'2', N'3400', N'1940', N'320')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042009', N'Ornate Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'27', N'3200', N'0', N'3', N'2', N'3400', N'2350', N'388')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042010', N'Rune Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'30', N'3200', N'0', N'3', N'2', N'3400', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042011', N'Raven Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'33', N'3200', N'0', N'3', N'2', N'3400', N'3270', N'540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042012', N'Castilian Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'36', N'3200', N'0', N'3', N'2', N'3400', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042013', N'Baleog Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'39', N'3200', N'0', N'3', N'2', N'3400', N'4350', N'718')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042014', N'Drake Helm of Blood', N'1', N'0', N'0', N'4', N'2', N'42', N'3200', N'0', N'3', N'2', N'3400', N'4940', N'815')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042015', N'Great Crysis War Helm', N'1', N'0', N'0', N'4', N'2', N'45', N'3200', N'0', N'3', N'2', N'3400', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042016', N'Great Traviron War Helm', N'1', N'0', N'0', N'4', N'2', N'48', N'3200', N'0', N'3', N'2', N'3400', N'6230', N'1028')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042017', N'Great Dragoon Helm', N'1', N'0', N'0', N'4', N'2', N'51', N'3200', N'0', N'3', N'2', N'3400', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613042018', N'Improved Repel War Helm', N'1', N'0', N'0', N'4', N'2', N'54', N'3200', N'0', N'3', N'2', N'3400', N'7680', N'1267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044001', N'Shining Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'3400', N'1', N'3', N'2', N'3400', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044002', N'Dazzling Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'3400', N'1', N'3', N'2', N'3400', N'590', N'97')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044003', N'Assault Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'3400', N'1', N'3', N'2', N'3400', N'1050', N'173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044004', N'Gendarme Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'3400', N'1', N'3', N'2', N'3400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044005', N'Enduring Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'3400', N'1', N'3', N'2', N'3400', N'2320', N'382')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044006', N'Jousting Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'3400', N'1', N'3', N'2', N'3400', N'3130', N'517')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044007', N'Stark Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'3400', N'4050', N'668')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044008', N'Menacing Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'3400', N'1', N'3', N'2', N'3400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044009', N'Hazardous Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'3400', N'1', N'3', N'2', N'3400', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044010', N'Expert Helm of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'3400', N'1', N'3', N'2', N'3400', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613044011', N'Improved Suspicious War Helm', N'1', N'1', N'5', N'4', N'4', N'55', N'3400', N'1', N'3', N'2', N'3400', N'8860', N'1462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045001', N'Doomed Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'3600', N'1', N'3', N'2', N'3400', N'620', N'102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045002', N'Essential Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'3400', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045003', N'Blazing Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045004', N'Infernal Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'3400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045005', N'Field Marshal Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'3600', N'1', N'3', N'2', N'3400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045006', N'Destined Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'3600', N'1', N'3', N'2', N'3400', N'4260', N'702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045007', N'Knightly Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'3600', N'1', N'3', N'2', N'3400', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045008', N'Fergana Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'3600', N'1', N'3', N'2', N'3400', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045009', N'Avernus Helm of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'3600', N'1', N'3', N'2', N'3400', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045010', N'Improved Flame War Helm', N'1', N'1', N'3', N'4', N'5', N'55', N'3600', N'1', N'3', N'2', N'3400', N'9330', N'1539')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045102', N'Bloody Essential War Helm', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'3400', N'1100', N'181')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045103', N'Bloody Blaze War Helm', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045104', N'Bloody Inferna War Helm', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'3400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045201', N'Shadow Blaze War Helm', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613045202', N'Shadow Infernal War Helm', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'3400', N'2440', N'402')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046001', N'Cruach Helm', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'3400', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046002', N'Moyitura Helm', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'3400', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046003', N'Forwar Helm', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'3400', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046004', N'Banded Helm', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046005', N'Unbreakable Helm', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'3400', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046006', N'Unbreakable Helm', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'3400', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046101', N'Bloody Cruaich War Helm', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'3400', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046102', N'Bloody Moitura War Helm', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'3400', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046103', N'Bloody For War Helm', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'3400', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046104', N'Bloody Bandeda War Helm', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046105', N'Bloody Unbreakable War Helm', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'3400', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046106', N'Bloody Dual Prop Helm', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'3400', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046203', N'Shadow Cruach Helm', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'3400', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046204', N'Shadow Moyitura Helm', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'3400', N'4470', N'738')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046205', N'Shadow Forwar Helm', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'3400', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046206', N'Shadow Banded Helm', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6750', N'1114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046207', N'Shadow Unbreakable Helm', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'3400', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'613046208', N'Shadow Dual Prop Helm', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'3400', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011001', N'Apprentice Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'1', N'4500', N'0', N'0', N'2', N'1100', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011002', N'Fabric Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'1', N'4500', N'0', N'0', N'2', N'1100', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011003', N'Linen Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'4', N'4500', N'0', N'0', N'2', N'1100', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011004', N'Fleece Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'7', N'4500', N'0', N'0', N'2', N'1100', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011005', N'Silky Yarn Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'10', N'4500', N'0', N'0', N'2', N'1100', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011006', N'Wool Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'13', N'4500', N'0', N'0', N'2', N'1100', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011007', N'Silk Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'16', N'4500', N'0', N'0', N'2', N'1100', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011008', N'Ram''s Wool Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'19', N'4500', N'0', N'0', N'2', N'1100', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011009', N'Muslin Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'22', N'4500', N'0', N'0', N'2', N'1100', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011010', N'Luna Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'25', N'4500', N'0', N'0', N'2', N'1100', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011011', N'Celestial Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'28', N'4500', N'0', N'0', N'2', N'1100', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011012', N'Mystical Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'31', N'4500', N'0', N'0', N'2', N'1100', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011013', N'Sorceress Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'34', N'4500', N'0', N'0', N'2', N'1100', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011014', N'Angora Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'37', N'4500', N'0', N'0', N'2', N'1100', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011015', N'Aramid Pants of Blood', N'1', N'0', N'0', N'1', N'1', N'40', N'4500', N'0', N'0', N'2', N'1100', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011016', N'Great Berber Leggings', N'1', N'0', N'0', N'1', N'1', N'43', N'4500', N'0', N'0', N'2', N'1100', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011017', N'Great Brocade Leggings', N'1', N'0', N'0', N'1', N'1', N'46', N'4500', N'0', N'0', N'2', N'1100', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011018', N'Great Doeskin Leggings', N'1', N'0', N'0', N'1', N'1', N'49', N'4500', N'0', N'0', N'2', N'1100', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011019', N'Great Tartan Leggings', N'1', N'0', N'0', N'1', N'1', N'52', N'4500', N'0', N'0', N'2', N'1100', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614011020', N'Improved Weaving Leggings', N'1', N'0', N'0', N'1', N'1', N'55', N'4500', N'0', N'0', N'2', N'1100', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012001', N'Fabric Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'2', N'5000', N'0', N'3', N'2', N'1100', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012002', N'Linen Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'5', N'5000', N'0', N'3', N'2', N'1100', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012003', N'Fleece Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'8', N'5000', N'0', N'3', N'2', N'1100', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012004', N'Silky Yarn Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'11', N'5000', N'0', N'3', N'2', N'1100', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012005', N'Wool Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'14', N'5000', N'0', N'3', N'2', N'1100', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012006', N'Silk Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'17', N'5000', N'0', N'3', N'2', N'1100', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012007', N'Ram''s Wool Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'20', N'5000', N'0', N'3', N'2', N'1100', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012008', N'Muslin Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'23', N'5000', N'0', N'3', N'2', N'1100', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012009', N'Luna Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'26', N'5000', N'0', N'3', N'2', N'1100', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012010', N'Celestial Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'29', N'5000', N'0', N'3', N'2', N'1100', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012011', N'Mystical Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'32', N'5000', N'0', N'3', N'2', N'1100', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012012', N'Sorceress Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'35', N'5000', N'0', N'3', N'2', N'1100', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012013', N'Angora Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'38', N'5000', N'0', N'3', N'2', N'1100', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012014', N'Aramid Pants of Blood', N'1', N'0', N'0', N'1', N'2', N'41', N'5000', N'0', N'3', N'2', N'1100', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012015', N'Great Berber Leggings', N'1', N'0', N'0', N'1', N'2', N'44', N'5000', N'0', N'3', N'2', N'1100', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012016', N'Great Brocade Leggings', N'1', N'0', N'0', N'1', N'2', N'47', N'5000', N'0', N'3', N'2', N'1100', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012017', N'Great Doeskin Leggings', N'1', N'0', N'0', N'1', N'2', N'50', N'5000', N'0', N'3', N'2', N'1100', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614012018', N'Great Tartan Leggings', N'1', N'0', N'0', N'1', N'2', N'53', N'5000', N'0', N'3', N'2', N'1100', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014001', N'Lavish Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'5500', N'1', N'3', N'2', N'1100', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014002', N'Insidious Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'5500', N'1', N'3', N'2', N'1100', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014003', N'Exceptional Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'5500', N'1', N'3', N'2', N'1100', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014004', N'Fervid Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'5500', N'1', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014005', N'Nefarious Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'5500', N'1', N'3', N'2', N'1100', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014006', N'Diabolic Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'5500', N'1', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014007', N'Sacred Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'5500', N'1', N'3', N'2', N'1100', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014008', N'Devious Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'5500', N'1', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014009', N'Distinct Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'5500', N'1', N'3', N'2', N'1100', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014010', N'Taffeta Pants of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'5500', N'1', N'3', N'2', N'1100', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614014011', N'Improved Obscure Leggings', N'1', N'1', N'5', N'1', N'4', N'55', N'5500', N'1', N'3', N'2', N'1100', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015001', N'Vital Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'6000', N'1', N'3', N'2', N'1100', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015002', N'Wisdom Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'6000', N'1', N'3', N'2', N'1100', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015003', N'Bentus Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015004', N'Raschel Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'6000', N'1', N'3', N'2', N'1100', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015005', N'Calico Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'6000', N'1', N'3', N'2', N'1100', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015006', N'Lumen Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'6000', N'1', N'3', N'2', N'1100', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015007', N'Starlight Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'6000', N'1', N'3', N'2', N'1100', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015008', N'Fluer Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'6000', N'1', N'3', N'2', N'1100', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015009', N'Pincord Pants of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'6000', N'1', N'3', N'2', N'1100', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015010', N'Improved Dusk Leggings', N'1', N'1', N'3', N'1', N'5', N'55', N'6000', N'1', N'3', N'2', N'1100', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015102', N'Bloody Wisdom Leggings', N'1', N'1', N'3', N'1', N'5', N'15', N'6000', N'1', N'3', N'2', N'1100', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015103', N'Bloody Ventus Leggings', N'1', N'1', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015104', N'Bloody Silentium Leggings', N'1', N'1', N'3', N'1', N'5', N'25', N'6000', N'1', N'3', N'2', N'1100', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015201', N'Shadow Bentus Leggings', N'1', N'1', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614015202', N'Shadow Sirenchium Leggings', N'1', N'1', N'3', N'1', N'5', N'25', N'6000', N'1', N'3', N'2', N'1100', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016001', N'Danu Pants', N'1', N'1', N'2', N'1', N'6', N'30', N'6500', N'1', N'3', N'2', N'1100', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016002', N'Morpheus Pants', N'1', N'1', N'2', N'1', N'6', N'35', N'6500', N'1', N'3', N'2', N'1100', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016003', N'Memoria Pants', N'1', N'1', N'2', N'1', N'6', N'40', N'6500', N'1', N'3', N'2', N'1100', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016004', N'Lindsey Pants', N'1', N'1', N'2', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016005', N'Grace Leggings', N'1', N'1', N'2', N'1', N'6', N'50', N'6500', N'1', N'3', N'2', N'1100', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016006', N'Grace Leggings', N'1', N'1', N'2', N'1', N'6', N'55', N'6500', N'1', N'3', N'2', N'1100', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016101', N'Bloody Danu Leggings', N'1', N'1', N'2', N'1', N'6', N'30', N'6500', N'1', N'3', N'2', N'1100', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016102', N'Bloody Morphous Leggings', N'1', N'1', N'2', N'1', N'6', N'35', N'6500', N'1', N'3', N'2', N'1100', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016103', N'Bloody Memoria Leggings', N'1', N'1', N'2', N'1', N'6', N'40', N'6500', N'1', N'3', N'2', N'1100', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016104', N'Bloody Lingee Leggings', N'1', N'1', N'2', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016105', N'Bloody Grace Leggings', N'1', N'1', N'2', N'1', N'6', N'50', N'6500', N'1', N'3', N'2', N'1100', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016106', N'Bloody Dominator Leggings', N'1', N'1', N'2', N'1', N'6', N'55', N'6500', N'1', N'3', N'2', N'1100', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016203', N'Shadow Danu Leggings', N'1', N'1', N'2', N'1', N'6', N'30', N'6500', N'1', N'3', N'2', N'1100', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016204', N'Shadow Morpheus Leggings', N'1', N'1', N'2', N'1', N'6', N'35', N'6500', N'1', N'3', N'2', N'1100', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016205', N'Shadow Memoria Leggings', N'1', N'1', N'2', N'1', N'6', N'40', N'6500', N'1', N'3', N'2', N'1100', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016206', N'Shadow Linsey Leggings', N'1', N'1', N'2', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016207', N'Shadow Grace Leggings', N'1', N'1', N'2', N'1', N'6', N'50', N'6500', N'1', N'3', N'2', N'1100', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614016208', N'Shadow Dominator Leggings', N'1', N'1', N'2', N'1', N'6', N'55', N'6500', N'1', N'3', N'2', N'1100', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021001', N'Apprentice Leather Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'1', N'4500', N'0', N'0', N'2', N'1600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021002', N'Light Leather Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'1', N'4500', N'0', N'0', N'2', N'1600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021003', N'Leather Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'4', N'4500', N'0', N'0', N'2', N'1600', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021004', N'Quilted Leather Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'7', N'4500', N'0', N'0', N'2', N'1600', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021005', N'Studded Leather Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'10', N'4500', N'0', N'0', N'2', N'1600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021006', N'Hunter Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'13', N'4500', N'0', N'0', N'2', N'1600', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021007', N'Carp Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'16', N'4500', N'0', N'0', N'2', N'1600', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021008', N'Suede Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'19', N'4500', N'0', N'0', N'2', N'1600', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021009', N'Nubuck Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'22', N'4500', N'0', N'0', N'2', N'1600', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021010', N'Slink Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'25', N'4500', N'0', N'0', N'2', N'1600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021011', N'Hide Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'28', N'4500', N'0', N'0', N'2', N'1600', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021012', N'Buckskin Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'31', N'4500', N'0', N'0', N'2', N'1600', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021013', N'Shagreen Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'34', N'4500', N'0', N'0', N'2', N'1600', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021014', N'Lamellar Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'37', N'4500', N'0', N'0', N'2', N'1600', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021015', N'Brigandine Pants of Blood', N'1', N'0', N'0', N'2', N'1', N'40', N'4500', N'0', N'0', N'2', N'1600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021016', N'Great Lorica Leggings', N'1', N'0', N'0', N'2', N'1', N'43', N'4500', N'0', N'0', N'2', N'1600', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021017', N'Great Swollen Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'46', N'4500', N'0', N'0', N'2', N'1600', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021018', N'Great Sinful Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'49', N'4500', N'0', N'0', N'2', N'1600', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021019', N'Great Holy Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'52', N'4500', N'0', N'0', N'2', N'1600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614021020', N'Improved Artisanal Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'55', N'4500', N'0', N'0', N'2', N'1600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022001', N'Light Leather Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'2', N'5000', N'0', N'3', N'2', N'1600', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022002', N'Leather Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'5', N'5000', N'0', N'3', N'2', N'1600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022003', N'Quilted Leather Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'8', N'5000', N'0', N'3', N'2', N'1600', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022004', N'Studded Leather Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'11', N'5000', N'0', N'3', N'2', N'1600', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022005', N'Hunter Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'14', N'5000', N'0', N'3', N'2', N'1600', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022006', N'Carp Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'17', N'5000', N'0', N'3', N'2', N'1600', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022007', N'Suede Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'20', N'5000', N'0', N'3', N'2', N'1600', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022008', N'Nubuck Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'23', N'5000', N'0', N'3', N'2', N'1600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022009', N'Slink Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'26', N'5000', N'0', N'3', N'2', N'1600', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022010', N'Hide Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'29', N'5000', N'0', N'3', N'2', N'1600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022011', N'Buckskin Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'32', N'5000', N'0', N'3', N'2', N'1600', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022012', N'Shagreen Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'35', N'5000', N'0', N'3', N'2', N'1600', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022013', N'Lamellar Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'38', N'5000', N'0', N'3', N'2', N'1600', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022014', N'Brigandine Pants of Blood', N'1', N'0', N'0', N'2', N'2', N'41', N'5000', N'0', N'3', N'2', N'1600', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022015', N'Great Lorica Leggings', N'1', N'0', N'0', N'2', N'2', N'44', N'5000', N'0', N'3', N'2', N'1600', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022016', N'Great Swollen Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'47', N'5000', N'0', N'3', N'2', N'1600', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022017', N'Great Sinful Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'50', N'5000', N'0', N'3', N'2', N'1600', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614022018', N'Great Holy Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'53', N'5000', N'0', N'3', N'2', N'1600', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024001', N'Authentic Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'5500', N'1', N'3', N'2', N'1600', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024002', N'Camouflage Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'5500', N'1', N'3', N'2', N'1600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024003', N'Illicit Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'5500', N'1', N'3', N'2', N'1600', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024004', N'Rugged Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'5500', N'1', N'3', N'2', N'1600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024005', N'Dread Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'5500', N'1', N'3', N'2', N'1600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024006', N'Tough Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'5500', N'1', N'3', N'2', N'1600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024007', N'Haken-hide Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'5500', N'1', N'3', N'2', N'1600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024008', N'Combat Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'5500', N'1', N'3', N'2', N'1600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024009', N'Genuine Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'5500', N'1', N'3', N'2', N'1600', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024010', N'Superior Pants of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'5500', N'1', N'3', N'2', N'1600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614024011', N'Improved Posh Leather Leggings', N'1', N'1', N'5', N'2', N'4', N'55', N'5500', N'1', N'3', N'2', N'1600', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025001', N'Tanned Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'6000', N'1', N'3', N'2', N'1600', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025002', N'Rawhide Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'6000', N'1', N'3', N'2', N'1600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025003', N'Demonic Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025004', N'Praetorian Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'6000', N'1', N'3', N'2', N'1600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025005', N'Lacrimal Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'6000', N'1', N'3', N'2', N'1600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025006', N'Eminent Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'6000', N'1', N'3', N'2', N'1600', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025007', N'Aquarius Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'6000', N'1', N'3', N'2', N'1600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025008', N'Rogue Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'6000', N'1', N'3', N'2', N'1600', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025009', N'Fianna Pants of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'6000', N'1', N'3', N'2', N'1600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025010', N'Improved Arcane Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'55', N'6000', N'1', N'3', N'2', N'1600', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025102', N'Bloody Dried Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'15', N'6000', N'1', N'3', N'2', N'1600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025103', N'Bloody Descend Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025104', N'Bloody Predator Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'25', N'6000', N'1', N'3', N'2', N'1600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025201', N'Shadow Descend Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614025202', N'Shadow Praeterita Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'25', N'6000', N'1', N'3', N'2', N'1600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026001', N'Airgetlam Pants', N'1', N'1', N'2', N'2', N'6', N'30', N'6500', N'1', N'3', N'2', N'1600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026002', N'Lir Pants', N'1', N'1', N'2', N'2', N'6', N'35', N'6500', N'1', N'3', N'2', N'1600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026003', N'Mir Pants', N'1', N'1', N'2', N'2', N'6', N'40', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026004', N'Ellodi Leather Pants', N'1', N'1', N'2', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026005', N'Blast Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'50', N'6500', N'1', N'3', N'2', N'1600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026006', N'Blast Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'55', N'6500', N'1', N'3', N'2', N'1600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026101', N'Bloody Alrget-Lamh Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'30', N'6500', N'1', N'3', N'2', N'1600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026102', N'Bloody Lyre Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'35', N'6500', N'1', N'3', N'2', N'1600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026103', N'Bloody Mir Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'40', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026104', N'Bloody Elody Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026105', N'Bloody Blast Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'50', N'6500', N'1', N'3', N'2', N'1600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026106', N'Bloody Levices Leggings', N'1', N'1', N'2', N'2', N'6', N'55', N'6500', N'1', N'3', N'2', N'1600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026203', N'Shadow Airgetlam Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'30', N'6500', N'1', N'3', N'2', N'1600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026204', N'Shadow Lir Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'35', N'6500', N'1', N'3', N'2', N'1600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026205', N'Shadow Mir Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'40', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026206', N'Shadow Elody Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026207', N'Shadow Blast Leather Leggings', N'1', N'1', N'2', N'2', N'6', N'50', N'6500', N'1', N'3', N'2', N'1600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614026208', N'Shadow Levices Leggings', N'1', N'1', N'2', N'2', N'6', N'55', N'6500', N'1', N'3', N'2', N'1600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031001', N'Apprentice Chain Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'1', N'4500', N'0', N'0', N'2', N'2400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031002', N'Ringed Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'1', N'4500', N'0', N'0', N'2', N'2400', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031003', N'Chain Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'4', N'4500', N'0', N'0', N'2', N'2400', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031004', N'Wire Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'7', N'4500', N'0', N'0', N'2', N'2400', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031005', N'Hunter Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'10', N'4500', N'0', N'0', N'2', N'2400', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031006', N'Battle Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'13', N'4500', N'0', N'0', N'2', N'2400', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031007', N'Devout Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'16', N'4500', N'0', N'0', N'2', N'2400', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031008', N'Banded Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'19', N'4500', N'0', N'0', N'2', N'2400', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031009', N'Linked Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'22', N'4500', N'0', N'0', N'2', N'2400', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031010', N'Splinted Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'25', N'4500', N'0', N'0', N'2', N'2400', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031011', N'Rivet Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'28', N'4500', N'0', N'0', N'2', N'2400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031012', N'Venetian Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'31', N'4500', N'0', N'0', N'2', N'2400', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031013', N'Arquebus Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'34', N'4500', N'0', N'0', N'2', N'2400', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031014', N'Acorn Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'37', N'4500', N'0', N'0', N'2', N'2400', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031015', N'Aventail Greaves of Blood', N'1', N'0', N'0', N'3', N'1', N'40', N'4500', N'0', N'0', N'2', N'2400', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031016', N'Great Chain Greave', N'1', N'0', N'0', N'3', N'1', N'43', N'4500', N'0', N'0', N'2', N'2400', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031017', N'Great Genovese Greave', N'1', N'0', N'0', N'3', N'1', N'46', N'4500', N'0', N'0', N'2', N'2400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031018', N'Great Peltman Chain Greave', N'1', N'0', N'0', N'3', N'1', N'49', N'4500', N'0', N'0', N'2', N'2400', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031019', N'Great Uniform Greaves', N'1', N'0', N'0', N'3', N'1', N'52', N'4500', N'0', N'0', N'2', N'2400', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614031020', N'Improved Concours Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'55', N'4500', N'0', N'0', N'2', N'2400', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032001', N'Ringed Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'2', N'5000', N'0', N'3', N'2', N'2400', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032002', N'Chain Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'5', N'5000', N'0', N'3', N'2', N'2400', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032003', N'Wire Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'8', N'5000', N'0', N'3', N'2', N'2400', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032004', N'Hunter Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'11', N'5000', N'0', N'3', N'2', N'2400', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032005', N'Battle Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'14', N'5000', N'0', N'3', N'2', N'2400', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032006', N'Devout Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'17', N'5000', N'0', N'3', N'2', N'2400', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032007', N'Banded Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'20', N'5000', N'0', N'3', N'2', N'2400', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032008', N'Linked Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'23', N'5000', N'0', N'3', N'2', N'2400', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032009', N'Splinted Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'26', N'5000', N'0', N'3', N'2', N'2400', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032010', N'Rivet Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'29', N'5000', N'0', N'3', N'2', N'2400', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032011', N'Venetian Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'32', N'5000', N'0', N'3', N'2', N'2400', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032012', N'Arquebus Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'35', N'5000', N'0', N'3', N'2', N'2400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032013', N'Acorn Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'38', N'5000', N'0', N'3', N'2', N'2400', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032014', N'Aventail Greaves of Blood', N'1', N'0', N'0', N'3', N'2', N'41', N'5000', N'0', N'3', N'2', N'2400', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032015', N'Great Chain Greave', N'1', N'0', N'0', N'3', N'2', N'44', N'5000', N'0', N'3', N'2', N'2400', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032016', N'Great Genovese Greave', N'1', N'0', N'0', N'3', N'2', N'47', N'5000', N'0', N'3', N'2', N'2400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032017', N'Great Peltman Chain Greave', N'1', N'0', N'0', N'3', N'2', N'50', N'5000', N'0', N'3', N'2', N'2400', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614032018', N'Great Uniform Greaves', N'1', N'0', N'0', N'3', N'2', N'53', N'5000', N'0', N'3', N'2', N'2400', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034001', N'Gritty Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'5500', N'1', N'3', N'2', N'2400', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034002', N'Heavy Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'5500', N'1', N'3', N'2', N'2400', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034003', N'Ultimate Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'5500', N'1', N'3', N'2', N'2400', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034004', N'Brisk Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'5500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034005', N'Bound Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'5500', N'1', N'3', N'2', N'2400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034006', N'Secure Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'5500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034007', N'Devout Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'5500', N'1', N'3', N'2', N'2400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034008', N'Solid Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'5500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034009', N'Discarded Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'5500', N'1', N'3', N'2', N'2400', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034010', N'Engraved Greaves of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'5500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614034011', N'Improved Cure Chain Greaves', N'1', N'1', N'5', N'3', N'4', N'55', N'5500', N'1', N'3', N'2', N'2400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035001', N'Dense Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'6000', N'1', N'3', N'2', N'2400', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035002', N'Burnished Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'6000', N'1', N'3', N'2', N'2400', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035003', N'Ribbed Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035004', N'Arcane Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'6000', N'1', N'3', N'2', N'2400', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035005', N'Ashen Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'6000', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035006', N'Placidus Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'6000', N'1', N'3', N'2', N'2400', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035007', N'Armadillo Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'6000', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035008', N'Bulwark Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035009', N'Cardiff Greaves of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'6000', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035010', N'Improved Armed Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'55', N'6000', N'1', N'3', N'2', N'2400', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035102', N'Bloody Pleasure Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'15', N'6000', N'1', N'3', N'2', N'2400', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035103', N'Bloody Rebellion Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035104', N'Bloody Velum Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'25', N'6000', N'1', N'3', N'2', N'2400', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035201', N'Shadow Riberion Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614035202', N'Shadow Velum Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'25', N'6000', N'1', N'3', N'2', N'2400', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036001', N'Ecne Greaves', N'1', N'1', N'2', N'3', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036002', N'Jamel Ducob Greaves', N'1', N'1', N'2', N'3', N'6', N'35', N'6500', N'1', N'3', N'2', N'2400', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036003', N'Badb Catha Greaves', N'1', N'1', N'2', N'3', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036004', N'Hinchi Greaves', N'1', N'1', N'2', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036005', N'Soul Eater''s Greaves', N'1', N'1', N'2', N'3', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036006', N'Soul Eater''s Greaves', N'1', N'1', N'2', N'3', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036101', N'Bloody Ecne Greaves', N'1', N'1', N'2', N'3', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036102', N'Bloody Jamelducov Greaves', N'1', N'1', N'2', N'3', N'6', N'35', N'6500', N'1', N'3', N'2', N'2400', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036103', N'Bloody Badhdh Cath Greaves', N'1', N'1', N'2', N'3', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036104', N'Bloody Hinche Greaves', N'1', N'1', N'2', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036105', N'Bloody Soul-Eater Greaves', N'1', N'1', N'2', N'3', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036106', N'Bloody Silver Tinge Greaves', N'1', N'1', N'2', N'3', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036203', N'Shadow Ecne Greaves', N'1', N'1', N'2', N'3', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036204', N'Shadow Jamel Ducob Greaves', N'1', N'1', N'2', N'3', N'6', N'35', N'6500', N'1', N'3', N'2', N'2400', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036205', N'Shadow Babd Catha Greaves', N'1', N'1', N'2', N'3', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036206', N'Shadow Hinchi Greaves', N'1', N'1', N'2', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036207', N'Shadow Soul Eater''s Greaves', N'1', N'1', N'2', N'3', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614036208', N'Shadow Silver Tinge Greaves', N'1', N'1', N'2', N'3', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041001', N'Apprentice Plate Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'1', N'4500', N'0', N'0', N'2', N'4600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041002', N'Prelic Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'1', N'4500', N'0', N'0', N'2', N'4600', N'50', N'8')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041003', N'Padded Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'4', N'4500', N'0', N'0', N'2', N'4600', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041004', N'Hauberk Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'7', N'4500', N'0', N'0', N'2', N'4600', N'420', N'69')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041005', N'Scale Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'10', N'4500', N'0', N'0', N'2', N'4600', N'690', N'114')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041006', N'Steel Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'13', N'4500', N'0', N'0', N'2', N'4600', N'1000', N'165')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041007', N'Spiral Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'16', N'4500', N'0', N'0', N'2', N'4600', N'1360', N'224')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041008', N'Hoplite Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'19', N'4500', N'0', N'0', N'2', N'4600', N'1770', N'292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041009', N'Full Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'22', N'4500', N'0', N'0', N'2', N'4600', N'2220', N'366')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041010', N'Ornate Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'25', N'4500', N'0', N'0', N'2', N'4600', N'2740', N'452')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041011', N'Rune Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'28', N'4500', N'0', N'0', N'2', N'4600', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041012', N'Raven Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'31', N'4500', N'0', N'0', N'2', N'4600', N'3890', N'642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041013', N'Castilian Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'34', N'4500', N'0', N'0', N'2', N'4600', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041014', N'Baleog Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'37', N'4500', N'0', N'0', N'2', N'4600', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041015', N'Drake Greaves of Blood', N'1', N'0', N'0', N'4', N'1', N'40', N'4500', N'0', N'0', N'2', N'4600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041016', N'Great Crysis War Greave', N'1', N'0', N'0', N'4', N'1', N'43', N'4500', N'0', N'0', N'2', N'4600', N'6780', N'1118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041017', N'Great Traviron War Greave', N'1', N'0', N'0', N'4', N'1', N'46', N'4500', N'0', N'0', N'2', N'4600', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041018', N'Great Dragoon Greave', N'1', N'0', N'0', N'4', N'1', N'49', N'4500', N'0', N'0', N'2', N'4600', N'8520', N'1405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041019', N'Great Reflective Greave', N'1', N'0', N'0', N'4', N'1', N'52', N'4500', N'0', N'0', N'2', N'4600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614041020', N'Improved Watcher''s War Greaves', N'1', N'0', N'0', N'4', N'1', N'55', N'4500', N'0', N'0', N'2', N'4600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042001', N'Prelic Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'2', N'5000', N'0', N'3', N'2', N'4600', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042002', N'Padded Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'5', N'5000', N'0', N'3', N'2', N'4600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042003', N'Hauberk Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'8', N'5000', N'0', N'3', N'2', N'4600', N'540', N'89')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042004', N'Scale Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'11', N'5000', N'0', N'3', N'2', N'4600', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042005', N'Steel Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'14', N'5000', N'0', N'3', N'2', N'4600', N'1190', N'196')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042006', N'Spiral Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'17', N'5000', N'0', N'3', N'2', N'4600', N'1590', N'262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042007', N'Hoplite Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'20', N'5000', N'0', N'3', N'2', N'4600', N'2040', N'336')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042008', N'Full Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'23', N'5000', N'0', N'3', N'2', N'4600', N'2540', N'419')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042009', N'Ornate Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'26', N'5000', N'0', N'3', N'2', N'4600', N'3090', N'510')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042010', N'Rune Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'29', N'5000', N'0', N'3', N'2', N'4600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042011', N'Raven Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'32', N'5000', N'0', N'3', N'2', N'4600', N'4360', N'719')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042012', N'Castilian Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'35', N'5000', N'0', N'3', N'2', N'4600', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042013', N'Baleog Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'38', N'5000', N'0', N'3', N'2', N'4600', N'5820', N'960')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042014', N'Drake Greaves of Blood', N'1', N'0', N'0', N'4', N'2', N'41', N'5000', N'0', N'3', N'2', N'4600', N'6640', N'1095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042015', N'Great Crysis War Greave', N'1', N'0', N'0', N'4', N'2', N'44', N'5000', N'0', N'3', N'2', N'4600', N'7500', N'1237')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042016', N'Great Traviron War Greave', N'1', N'0', N'0', N'4', N'2', N'47', N'5000', N'0', N'3', N'2', N'4600', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042017', N'Great Dragoon Greave', N'1', N'0', N'0', N'4', N'2', N'50', N'5000', N'0', N'3', N'2', N'4600', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614042018', N'Great Reflective Greave', N'1', N'0', N'0', N'4', N'2', N'53', N'5000', N'0', N'3', N'2', N'4600', N'10400', N'1716')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044001', N'Shining Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'5500', N'1', N'3', N'2', N'4600', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044002', N'Dazzling Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'5500', N'1', N'3', N'2', N'4600', N'820', N'135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044003', N'Assault Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'5500', N'1', N'3', N'2', N'4600', N'1470', N'243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044004', N'Gendarme Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'5500', N'1', N'3', N'2', N'4600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044005', N'Enduring Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'5500', N'1', N'3', N'2', N'4600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044006', N'Jousting Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'5500', N'1', N'3', N'2', N'4600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044007', N'Stark Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'5500', N'1', N'3', N'2', N'4600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044008', N'Menacing Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'5500', N'1', N'3', N'2', N'4600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044009', N'Hazardous Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'5500', N'1', N'3', N'2', N'4600', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044010', N'Expert Greaves of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'5500', N'1', N'3', N'2', N'4600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614044011', N'Improved Suspicious War Greaves', N'1', N'1', N'5', N'4', N'4', N'55', N'5500', N'1', N'3', N'2', N'4600', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045001', N'Doomed Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'6000', N'1', N'3', N'2', N'4600', N'860', N'141')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045002', N'Essential Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'6000', N'1', N'3', N'2', N'4600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045003', N'Blazing Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'4600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045004', N'Infernal Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'6000', N'1', N'3', N'2', N'4600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045005', N'Field Marshal Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'6000', N'1', N'3', N'2', N'4600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045006', N'Destined Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'6000', N'1', N'3', N'2', N'4600', N'5960', N'983')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045007', N'Knightly Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'6000', N'1', N'3', N'2', N'4600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045008', N'Fergana Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'6000', N'1', N'3', N'2', N'4600', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045009', N'Avernus Greaves of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'6000', N'1', N'3', N'2', N'4600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045010', N'Improved Flame War Greaves', N'1', N'1', N'3', N'4', N'5', N'55', N'6000', N'1', N'3', N'2', N'4600', N'13060', N'2155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045102', N'Bloody Essential War Greaves', N'1', N'1', N'3', N'4', N'5', N'15', N'6000', N'1', N'3', N'2', N'4600', N'1550', N'256')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045103', N'Bloody Blaze War Greaves', N'1', N'1', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'4600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045104', N'Bloody Inferna War Greaves', N'1', N'1', N'3', N'4', N'5', N'25', N'6000', N'1', N'3', N'2', N'4600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045201', N'Shadow Blaze War Greaves', N'1', N'1', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'4600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614045202', N'Shadow Infernal War Greaves', N'1', N'1', N'3', N'4', N'5', N'25', N'6000', N'1', N'3', N'2', N'4600', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046001', N'Cruach Greaves', N'1', N'1', N'2', N'4', N'6', N'30', N'6500', N'1', N'3', N'2', N'4600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046002', N'Moyitura Greaves', N'1', N'1', N'2', N'4', N'6', N'35', N'6500', N'1', N'3', N'2', N'4600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046003', N'Forwar Greaves', N'1', N'1', N'2', N'4', N'6', N'40', N'6500', N'1', N'3', N'2', N'4600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046004', N'Banded Greaves', N'1', N'1', N'2', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'4600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046005', N'Unbreakable Greaves', N'1', N'1', N'2', N'4', N'6', N'50', N'6500', N'1', N'3', N'2', N'4600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046006', N'Unbreakable Greaves', N'1', N'1', N'2', N'4', N'6', N'55', N'6500', N'1', N'3', N'2', N'4600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046101', N'Bloody Cruaich Greaves', N'1', N'1', N'2', N'4', N'6', N'30', N'6500', N'1', N'3', N'2', N'4600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046102', N'Bloody Moitura Greaves', N'1', N'1', N'2', N'4', N'6', N'35', N'6500', N'1', N'3', N'2', N'4600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046103', N'Bloody For War Greaves', N'1', N'1', N'2', N'4', N'6', N'40', N'6500', N'1', N'3', N'2', N'4600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046104', N'Bloody Bandeda Greaves', N'1', N'1', N'2', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'4600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046105', N'Bloody Unbreakable Greaves', N'1', N'1', N'2', N'4', N'6', N'50', N'6500', N'1', N'3', N'2', N'4600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046106', N'Bloody Dual Prop Greaves', N'1', N'1', N'2', N'4', N'6', N'55', N'6500', N'1', N'3', N'2', N'4600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046203', N'Shadow Cruach Greaves', N'1', N'1', N'2', N'4', N'6', N'30', N'6500', N'1', N'3', N'2', N'4600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046204', N'Shadow Moyitura Greaves', N'1', N'1', N'2', N'4', N'6', N'35', N'6500', N'1', N'3', N'2', N'4600', N'6260', N'1032')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046205', N'Shadow Forwar Greaves', N'1', N'1', N'2', N'4', N'6', N'40', N'6500', N'1', N'3', N'2', N'4600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046206', N'Shadow Banded Greaves', N'1', N'1', N'2', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'4600', N'9440', N'1558')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046207', N'Shadow Unbreakable Greaves', N'1', N'1', N'2', N'4', N'6', N'50', N'6500', N'1', N'3', N'2', N'4600', N'11030', N'1821')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'614046208', N'Shadow Dual Prop Greaves', N'1', N'1', N'2', N'4', N'6', N'55', N'6500', N'1', N'3', N'2', N'4600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011001', N'Fabric Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'3', N'4000', N'0', N'0', N'2', N'600', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011002', N'Linen Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'6', N'4000', N'0', N'0', N'2', N'600', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011003', N'Fleece Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'9', N'4000', N'0', N'0', N'2', N'600', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011004', N'Silky Yarn Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'12', N'4000', N'0', N'0', N'2', N'600', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011005', N'Wool Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011006', N'Silk Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'18', N'4000', N'0', N'0', N'2', N'600', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011007', N'Ram''s Wool Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'21', N'4000', N'0', N'0', N'2', N'600', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011008', N'Muslin Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'24', N'4000', N'0', N'0', N'2', N'600', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011009', N'Luna Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'27', N'4000', N'0', N'0', N'2', N'600', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011010', N'Celestial Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011011', N'Mystical Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'33', N'4000', N'0', N'0', N'2', N'600', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011012', N'Sorceress Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'36', N'4000', N'0', N'0', N'2', N'600', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011013', N'Angora Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'39', N'4000', N'0', N'0', N'2', N'600', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011014', N'Aramid Shoes of Blood', N'1', N'0', N'0', N'1', N'1', N'42', N'4000', N'0', N'0', N'2', N'600', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011015', N'Great Berber Shoes', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011016', N'Great Brocade Shoes', N'1', N'0', N'0', N'1', N'1', N'48', N'4000', N'0', N'0', N'2', N'600', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011017', N'Great Doeskin Shoes', N'1', N'0', N'0', N'1', N'1', N'51', N'4000', N'0', N'0', N'2', N'600', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615011018', N'Improved Weaving Shoes', N'1', N'0', N'0', N'1', N'1', N'54', N'4000', N'0', N'0', N'2', N'600', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012001', N'Fabric Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'4', N'4200', N'0', N'3', N'2', N'600', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012002', N'Linen Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'7', N'4200', N'0', N'3', N'2', N'600', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012003', N'Fleece Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'10', N'4200', N'0', N'3', N'2', N'600', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012004', N'Silky Yarn Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'13', N'4200', N'0', N'3', N'2', N'600', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012005', N'Wool Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'16', N'4200', N'0', N'3', N'2', N'600', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012006', N'Silk Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'19', N'4200', N'0', N'3', N'2', N'600', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012007', N'Ram''s Wool Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'22', N'4200', N'0', N'3', N'2', N'600', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012008', N'Muslin Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'25', N'4200', N'0', N'3', N'2', N'600', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012009', N'Luna Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'28', N'4200', N'0', N'3', N'2', N'600', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012010', N'Celestial Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'31', N'4200', N'0', N'3', N'2', N'600', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012011', N'Mystical Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'34', N'4200', N'0', N'3', N'2', N'600', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012012', N'Sorceress Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'37', N'4200', N'0', N'3', N'2', N'600', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012013', N'Angora Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'40', N'4200', N'0', N'3', N'2', N'600', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012014', N'Aramid Shoes of Blood', N'1', N'0', N'0', N'1', N'2', N'43', N'4200', N'0', N'3', N'2', N'600', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012015', N'Great Berber Shoes', N'1', N'0', N'0', N'1', N'2', N'46', N'4200', N'0', N'3', N'2', N'600', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012016', N'Great Brocade Shoes', N'1', N'0', N'0', N'1', N'2', N'49', N'4200', N'0', N'3', N'2', N'600', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012017', N'Great Doeskin Shoes', N'1', N'0', N'0', N'1', N'2', N'52', N'4200', N'0', N'3', N'2', N'600', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615012018', N'Improved Nea Shoes', N'1', N'0', N'0', N'1', N'2', N'55', N'4200', N'0', N'3', N'2', N'600', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014001', N'Lavish Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'4400', N'1', N'3', N'2', N'600', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014002', N'Insidious Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'4400', N'1', N'3', N'2', N'600', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014003', N'Exceptional Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'4400', N'1', N'3', N'2', N'600', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014004', N'Fervid Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'4400', N'1', N'3', N'2', N'600', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014005', N'Nefarious Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014006', N'Diabolic Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014007', N'Sacred Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'4400', N'1', N'3', N'2', N'600', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014008', N'Devious Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'4400', N'1', N'3', N'2', N'600', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014009', N'Distinct Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'4400', N'1', N'3', N'2', N'600', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014010', N'Taffeta Shoes of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'4400', N'1', N'3', N'2', N'600', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615014011', N'Improved Obscure Shoes', N'1', N'1', N'5', N'1', N'4', N'55', N'4400', N'1', N'3', N'2', N'600', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015001', N'Vital Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'4600', N'1', N'3', N'2', N'600', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015002', N'Wisdom Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015003', N'Bentus Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015004', N'Raschel Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015005', N'Calico Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'4600', N'1', N'3', N'2', N'600', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015006', N'Lumen Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'4600', N'1', N'3', N'2', N'600', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015007', N'Starlight Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'4600', N'1', N'3', N'2', N'600', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015008', N'Fluer Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'4600', N'1', N'3', N'2', N'600', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015009', N'Pincord Shoes of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'4600', N'1', N'3', N'2', N'600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015010', N'Improved Dusk Shoes', N'1', N'1', N'3', N'1', N'5', N'55', N'4600', N'1', N'3', N'2', N'600', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015102', N'Bloody Wisdom Shoes', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015103', N'Bloody Ventus Shoes', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015104', N'Bloody Silentium Shoes', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015201', N'Shadow Bentus Shoes', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615015202', N'Shadow Sirenchium Shoes', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016001', N'Danu Shoes', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016002', N'Morpheus Shoes', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016003', N'Memoria Shoes', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016004', N'Lindsey Shoes', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016005', N'Grace Shoes', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016006', N'Grace Shoes', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016101', N'Bloody Danu Shoes', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016102', N'Bloody Morphous Shoes', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016103', N'Bloody Memoria Shoes', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016104', N'Bloody Lingee Shoes', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016105', N'Bloody Grace Shoes', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016106', N'Bloody Dominator Shoes', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016203', N'Shadow Danu Shoes', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016204', N'Shadow Morpheus Shoes', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016205', N'Shadow Memoria Shoes', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016206', N'Shadow Linsey Shoes', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016207', N'Shadow Grace Shoes', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615016208', N'Shadow Dominator Shoes', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021001', N'Light Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'3', N'4000', N'0', N'0', N'2', N'800', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021002', N'Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'6', N'4000', N'0', N'0', N'2', N'800', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021003', N'Quilted Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'9', N'4000', N'0', N'0', N'2', N'800', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021004', N'Studded Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'12', N'4000', N'0', N'0', N'2', N'800', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021005', N'Hunter Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'800', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021006', N'Carp Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'18', N'4000', N'0', N'0', N'2', N'800', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021007', N'Suede Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'21', N'4000', N'0', N'0', N'2', N'800', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021008', N'Nubuck Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'24', N'4000', N'0', N'0', N'2', N'800', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021009', N'Slink Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'27', N'4000', N'0', N'0', N'2', N'800', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021010', N'Hide Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'800', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021011', N'Buckskin Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'33', N'4000', N'0', N'0', N'2', N'800', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021012', N'Shagreen Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'36', N'4000', N'0', N'0', N'2', N'800', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021013', N'Lamellar Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'39', N'4000', N'0', N'0', N'2', N'800', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021014', N'Brigandine Shoes of Blood', N'1', N'0', N'0', N'2', N'1', N'42', N'4000', N'0', N'0', N'2', N'800', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021015', N'Great Lorica Shoes', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'800', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021016', N'Great Swollen Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'48', N'4000', N'0', N'0', N'2', N'800', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021017', N'Great Sinful Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'51', N'4000', N'0', N'0', N'2', N'800', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615021018', N'Improved Artisanal Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'54', N'4000', N'0', N'0', N'2', N'800', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022001', N'Light Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'4', N'4200', N'0', N'3', N'2', N'800', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022002', N'Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'7', N'4200', N'0', N'3', N'2', N'800', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022003', N'Quilted Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'10', N'4200', N'0', N'3', N'2', N'800', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022004', N'Studded Leather Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'13', N'4200', N'0', N'3', N'2', N'800', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022005', N'Hunter Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'16', N'4200', N'0', N'3', N'2', N'800', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022006', N'Carp Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'19', N'4200', N'0', N'3', N'2', N'800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022007', N'Suede Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'22', N'4200', N'0', N'3', N'2', N'800', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022008', N'Nubuck Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'25', N'4200', N'0', N'3', N'2', N'800', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022009', N'Slink Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'28', N'4200', N'0', N'3', N'2', N'800', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022010', N'Hide Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'31', N'4200', N'0', N'3', N'2', N'800', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022011', N'Buckskin Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'34', N'4200', N'0', N'3', N'2', N'800', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022012', N'Shagreen Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'37', N'4200', N'0', N'3', N'2', N'800', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022013', N'Lamellar Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'40', N'4200', N'0', N'3', N'2', N'800', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022014', N'Brigandine Shoes of Blood', N'1', N'0', N'0', N'2', N'2', N'43', N'4200', N'0', N'3', N'2', N'800', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022015', N'Great Lorica Shoes', N'1', N'0', N'0', N'2', N'2', N'46', N'4200', N'0', N'3', N'2', N'800', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022016', N'Great Swollen Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'49', N'4200', N'0', N'3', N'2', N'800', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022017', N'Great Sinful Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'52', N'4200', N'0', N'3', N'2', N'800', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615022018', N'Improved DS Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'55', N'4200', N'0', N'3', N'2', N'800', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024001', N'Authentic Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'4400', N'1', N'3', N'2', N'800', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024002', N'Camouflage Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'4400', N'1', N'3', N'2', N'800', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024003', N'Illicit Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'4400', N'1', N'3', N'2', N'800', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024004', N'Rugged Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'4400', N'1', N'3', N'2', N'800', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024005', N'Dread Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'800', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024006', N'Tough Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'800', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024007', N'Haken-hide Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'4400', N'1', N'3', N'2', N'800', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024008', N'Combat Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'4400', N'1', N'3', N'2', N'800', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024009', N'Genuine Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'4400', N'1', N'3', N'2', N'800', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024010', N'Superior Shoes of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'4400', N'1', N'3', N'2', N'800', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615024011', N'Improved Posh Leather Shoes', N'1', N'1', N'5', N'2', N'4', N'55', N'4400', N'1', N'3', N'2', N'800', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025001', N'Tanned Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'4600', N'1', N'3', N'2', N'800', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025002', N'Rawhide Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'800', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025003', N'Demonic Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025004', N'Praetorian Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025005', N'Lacrimal Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'4600', N'1', N'3', N'2', N'800', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025006', N'Eminent Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'4600', N'1', N'3', N'2', N'800', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025007', N'Aquarius Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'4600', N'1', N'3', N'2', N'800', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025008', N'Rogue Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'4600', N'1', N'3', N'2', N'800', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025009', N'Fianna Shoes of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'4600', N'1', N'3', N'2', N'800', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025010', N'Improved Arcane Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'55', N'4600', N'1', N'3', N'2', N'800', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025102', N'Bloody Dried Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'800', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025103', N'Bloody Descend Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025104', N'Bloody Predator Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025201', N'Shadow Descend Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615025202', N'Shadow Praeterita Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'800', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026001', N'Airgetlam Shoes', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'800', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026002', N'Lir Shoes', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'800', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026003', N'Mir Shoes', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'800', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026004', N'Ellodi Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'800', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026005', N'Blast Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'800', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026006', N'Blast Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'800', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026101', N'Bloody Alrget-Lamh Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'800', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026102', N'Bloody Lyre Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'800', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026103', N'Bloody Mir Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'800', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026104', N'Bloody Elody Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'800', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026105', N'Bloody Blast Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'800', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026106', N'Bloody Levices Shoes', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'800', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026203', N'Shadow Airgetlam Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'800', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026204', N'Shadow Lir Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'800', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026205', N'Shadow Mir Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'800', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026206', N'Shadow Elody Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'800', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026207', N'Shadow Blast Leather Shoes', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'800', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615026208', N'Shadow Levices Shoes', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'800', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031001', N'Tatter Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'3', N'4000', N'0', N'0', N'2', N'1200', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031002', N'Chain Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'6', N'4000', N'0', N'0', N'2', N'1200', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031003', N'Wire Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'9', N'4000', N'0', N'0', N'2', N'1200', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031004', N'Hunter Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'12', N'4000', N'0', N'0', N'2', N'1200', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031005', N'Battle Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'1200', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031006', N'Devout Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'18', N'4000', N'0', N'0', N'2', N'1200', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031007', N'Banded Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'21', N'4000', N'0', N'0', N'2', N'1200', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031008', N'Linked Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'24', N'4000', N'0', N'0', N'2', N'1200', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031009', N'Splinted Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'27', N'4000', N'0', N'0', N'2', N'1200', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031010', N'Rivet Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'1200', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031011', N'Venetian Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'33', N'4000', N'0', N'0', N'2', N'1200', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031012', N'Arquebus Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'36', N'4000', N'0', N'0', N'2', N'1200', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031013', N'Acorn Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'39', N'4000', N'0', N'0', N'2', N'1200', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031014', N'Aventail Boots of Blood', N'1', N'0', N'0', N'3', N'1', N'42', N'4000', N'0', N'0', N'2', N'1200', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031015', N'Great Chain Boots', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'1200', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031016', N'Great Genovese Boots', N'1', N'0', N'0', N'3', N'1', N'48', N'4000', N'0', N'0', N'2', N'1200', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031017', N'Great Peltman Chain Boots', N'1', N'0', N'0', N'3', N'1', N'51', N'4000', N'0', N'0', N'2', N'1200', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615031018', N'Improved Concours Chain Boots', N'1', N'0', N'0', N'3', N'1', N'54', N'4000', N'0', N'0', N'2', N'1200', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032001', N'Tatter Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'4', N'4200', N'0', N'3', N'2', N'1200', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032002', N'Chain Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'7', N'4200', N'0', N'3', N'2', N'1200', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032003', N'Wire Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'10', N'4200', N'0', N'3', N'2', N'1200', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032004', N'Hunter Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'13', N'4200', N'0', N'3', N'2', N'1200', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032005', N'Battle Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'16', N'4200', N'0', N'3', N'2', N'1200', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032006', N'Devout Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'19', N'4200', N'0', N'3', N'2', N'1200', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032007', N'Banded Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'22', N'4200', N'0', N'3', N'2', N'1200', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032008', N'Linked Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'25', N'4200', N'0', N'3', N'2', N'1200', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032009', N'Splinted Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'28', N'4200', N'0', N'3', N'2', N'1200', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032010', N'Rivet Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'31', N'4200', N'0', N'3', N'2', N'1200', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032011', N'Venetian Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'34', N'4200', N'0', N'3', N'2', N'1200', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032012', N'Arquebus Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'37', N'4200', N'0', N'3', N'2', N'1200', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032013', N'Acorn Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'40', N'4200', N'0', N'3', N'2', N'1200', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032014', N'Aventail Boots of Blood', N'1', N'0', N'0', N'3', N'2', N'43', N'4200', N'0', N'3', N'2', N'1200', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032015', N'Great Chain Boots', N'1', N'0', N'0', N'3', N'2', N'46', N'4200', N'0', N'3', N'2', N'1200', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032016', N'Great Genovese Boots', N'1', N'0', N'0', N'3', N'2', N'49', N'4200', N'0', N'3', N'2', N'1200', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032017', N'Great Peltman Chain Boots', N'1', N'0', N'0', N'3', N'2', N'52', N'4200', N'0', N'3', N'2', N'1200', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615032018', N'Improved Natura Chain Boots', N'1', N'0', N'0', N'3', N'2', N'55', N'4200', N'0', N'3', N'2', N'1200', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034001', N'Gritty Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'4400', N'1', N'3', N'2', N'1200', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034002', N'Heavy Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'4400', N'1', N'3', N'2', N'1200', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034003', N'Ultimate Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'4400', N'1', N'3', N'2', N'1200', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034004', N'Brisk Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'4400', N'1', N'3', N'2', N'1200', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034005', N'Bound Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'1200', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034006', N'Secure Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'1200', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034007', N'Devout Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'4400', N'1', N'3', N'2', N'1200', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034008', N'Solid Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'4400', N'1', N'3', N'2', N'1200', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034009', N'Discarded Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'4400', N'1', N'3', N'2', N'1200', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034010', N'Engraved Boots of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'4400', N'1', N'3', N'2', N'1200', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615034011', N'Improved Cure Chain Boots', N'1', N'1', N'5', N'3', N'4', N'55', N'4400', N'1', N'3', N'2', N'1200', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035001', N'Dense Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'4600', N'1', N'3', N'2', N'1200', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035002', N'Burnished Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'1200', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035003', N'Ribbed Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'1200', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035004', N'Arcane Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035005', N'Ashen Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'4600', N'1', N'3', N'2', N'1200', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035006', N'Placidus Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'4600', N'1', N'3', N'2', N'1200', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035007', N'Armadillo Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'4600', N'1', N'3', N'2', N'1200', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035008', N'Bulwark Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'4600', N'1', N'3', N'2', N'1200', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035009', N'Cardiff Boots of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'4600', N'1', N'3', N'2', N'1200', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035010', N'Improved Armed Chain Boots', N'1', N'1', N'3', N'3', N'5', N'55', N'4600', N'1', N'3', N'2', N'1200', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035102', N'Bloody Pleasure Chain Boots', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'1200', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035103', N'Bloody Rebellion Chain Boots', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'1200', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035104', N'Bloody Velum Chain Boots', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035201', N'Shadow Riberion Chain Boots', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'1200', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615035202', N'Shadow Velum Chain Boots', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'1200', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036001', N'Ecne Boots', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'1200', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036002', N'Jamel Ducob Boots', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'1200', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036003', N'Badb Catha Boots', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'1200', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036004', N'Hinchi Boots', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'1200', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036005', N'Soul Eater''s Boots', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'1200', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036006', N'Soul Eater''s Boots', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'1200', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036101', N'Bloody Ecne Boots', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'1200', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036102', N'Bloody Jamelducov Boots', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'1200', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036103', N'Bloody Badhdh Cath Boots', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'1200', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036104', N'Bloody Hinche Boots', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'1200', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036105', N'Bloody Soul-Eater Boots', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'1200', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036106', N'Bloody Silver Tinge Boots', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'1200', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036203', N'Shadow Ecne Boots', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'1200', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036204', N'Shadow Jamel Ducob Boots', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'1200', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036205', N'Shadow Babd Catha Boots', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'1200', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036206', N'Shadow Hinchi Boots', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'1200', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036207', N'Shadow Soul Eater''s Boots', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'1200', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615036208', N'Shadow Silver Tinge Boots', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'1200', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041001', N'Prelic War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'3', N'4000', N'0', N'0', N'2', N'2300', N'130', N'22')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041002', N'Padded War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'6', N'4000', N'0', N'0', N'2', N'2300', N'300', N'49')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041003', N'Hauberk War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'9', N'4000', N'0', N'0', N'2', N'2300', N'510', N'84')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041004', N'Scale War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'12', N'4000', N'0', N'0', N'2', N'2300', N'770', N'127')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041005', N'Steel War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'2300', N'1060', N'174')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041006', N'Spiral War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'18', N'4000', N'0', N'0', N'2', N'2300', N'1400', N'231')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041007', N'Hoplite Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'21', N'4000', N'0', N'0', N'2', N'2300', N'1780', N'293')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041008', N'Full War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'24', N'4000', N'0', N'0', N'2', N'2300', N'2190', N'361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041009', N'Ornate War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'27', N'4000', N'0', N'0', N'2', N'2300', N'2660', N'438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041010', N'Rune War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'2300', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041011', N'Raven War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'33', N'4000', N'0', N'0', N'2', N'2300', N'3700', N'610')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041012', N'Castilian Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'36', N'4000', N'0', N'0', N'2', N'2300', N'4290', N'708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041013', N'Baleog War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'39', N'4000', N'0', N'0', N'2', N'2300', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041014', N'Drake War Boots of Blood', N'1', N'0', N'0', N'4', N'1', N'42', N'4000', N'0', N'0', N'2', N'2300', N'5580', N'920')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041015', N'Great Crysis War Boots', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'2300', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041016', N'Great Traviron War Boots', N'1', N'0', N'0', N'4', N'1', N'48', N'4000', N'0', N'0', N'2', N'2300', N'7040', N'1161')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041017', N'Great Dragoon Boots', N'1', N'0', N'0', N'4', N'1', N'51', N'4000', N'0', N'0', N'2', N'2300', N'7830', N'1292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615041018', N'Improved Watcher''s War Boots', N'1', N'0', N'0', N'4', N'1', N'54', N'4000', N'0', N'0', N'2', N'2300', N'8660', N'1429')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042001', N'Prelic War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'4', N'4200', N'0', N'3', N'2', N'2300', N'200', N'33')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042002', N'Padded War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'7', N'4200', N'0', N'3', N'2', N'2300', N'390', N'64')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042003', N'Hauberk War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'10', N'4200', N'0', N'3', N'2', N'2300', N'630', N'104')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042004', N'Scale War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'13', N'4200', N'0', N'3', N'2', N'2300', N'910', N'150')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042005', N'Steel War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'16', N'4200', N'0', N'3', N'2', N'2300', N'1240', N'204')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042006', N'Spiral War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'19', N'4200', N'0', N'3', N'2', N'2300', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042007', N'Hoplite Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'22', N'4200', N'0', N'3', N'2', N'2300', N'2030', N'335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042008', N'Full War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'25', N'4200', N'0', N'3', N'2', N'2300', N'2490', N'411')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042009', N'Ornate War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'28', N'4200', N'0', N'3', N'2', N'2300', N'2990', N'493')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042010', N'Rune War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'31', N'4200', N'0', N'3', N'2', N'2300', N'3540', N'584')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042011', N'Raven War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'34', N'4200', N'0', N'3', N'2', N'2300', N'4130', N'682')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042012', N'Castilian Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'37', N'4200', N'0', N'3', N'2', N'2300', N'4770', N'787')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042013', N'Baleog War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'40', N'4200', N'0', N'3', N'2', N'2300', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042014', N'Drake War Boots of Blood', N'1', N'0', N'0', N'4', N'2', N'43', N'4200', N'0', N'3', N'2', N'2300', N'6180', N'1019')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042015', N'Great Crysis War Boots', N'1', N'0', N'0', N'4', N'2', N'46', N'4200', N'0', N'3', N'2', N'2300', N'6940', N'1145')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042016', N'Great Traviron War Boots', N'1', N'0', N'0', N'4', N'2', N'49', N'4200', N'0', N'3', N'2', N'2300', N'7760', N'1280')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042017', N'Great Dragoon Boots', N'1', N'0', N'0', N'4', N'2', N'52', N'4200', N'0', N'3', N'2', N'2300', N'8610', N'1421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615042018', N'Improved Repel War Boots', N'1', N'0', N'0', N'4', N'2', N'55', N'4200', N'0', N'3', N'2', N'2300', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044001', N'Shining Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'4400', N'1', N'3', N'2', N'2300', N'290', N'48')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044002', N'Dazzling Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'4400', N'1', N'3', N'2', N'2300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044003', N'Assault War Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'4400', N'1', N'3', N'2', N'2300', N'1250', N'206')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044004', N'Gendarme Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'4400', N'1', N'3', N'2', N'2300', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044005', N'Enduring War Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'2300', N'2780', N'458')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044006', N'Jousting Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'2300', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044007', N'Stark Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'4400', N'1', N'3', N'2', N'2300', N'4850', N'800')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044008', N'Menacing Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'4400', N'1', N'3', N'2', N'2300', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044009', N'Hazardous War Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'4400', N'1', N'3', N'2', N'2300', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044010', N'Expert Boots of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'4400', N'1', N'3', N'2', N'2300', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615044011', N'Improved Suspicious War Boots', N'1', N'1', N'5', N'4', N'4', N'55', N'4400', N'1', N'3', N'2', N'2300', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045001', N'Doomed Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'4600', N'1', N'3', N'2', N'2300', N'740', N'122')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045002', N'Essential War Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'2300', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045003', N'Blazing Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'2300', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045004', N'Infernal War Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'2300', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045005', N'Field Marshal Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'4600', N'1', N'3', N'2', N'2300', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045006', N'Destined Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'4600', N'1', N'3', N'2', N'2300', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045007', N'Knightly Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'4600', N'1', N'3', N'2', N'2300', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045008', N'Fergana War Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'4600', N'1', N'3', N'2', N'2300', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045009', N'Avernus Boots of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'4600', N'1', N'3', N'2', N'2300', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045010', N'Improved Flame War Boots', N'1', N'1', N'3', N'4', N'5', N'55', N'4600', N'1', N'3', N'2', N'2300', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045102', N'Bloody Essential War Boots', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'2300', N'1320', N'217')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045103', N'Bloody Blaze War Boots', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'2300', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045104', N'Bloody Inferna War Boots', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'2300', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045201', N'Shadow Blaze War Boots', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'2300', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615045202', N'Shadow Infernal War Boots', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'2300', N'2930', N'484')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046001', N'Cruach War Boots', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'2300', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046002', N'Moyitura War Boots', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'2300', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046003', N'Forwar War Boots', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'2300', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046004', N'Banded War Boots', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'2300', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046005', N'Unbreakable War Boots', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'2300', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046006', N'Unbreakable War Boots', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'2300', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046101', N'Bloody Cruaich War Boots', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'2300', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046102', N'Bloody Moitura War Boots', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'2300', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046103', N'Bloody For War War Boots', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'2300', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046104', N'Bloody Bandeda War Boots', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'2300', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046105', N'Bloody Unbreakable War Boots', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'2300', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046106', N'Bloody Dual Prop War Boots', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'2300', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046203', N'Shadow Cruach War Boots', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'2300', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046204', N'Shadow Moyitura War Boots', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'2300', N'5370', N'886')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046205', N'Shadow Forwar War Boots', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'2300', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046206', N'Shadow Banded War Boots', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'2300', N'8090', N'1335')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046207', N'Shadow Unbreakable War Boots', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'2300', N'9450', N'1559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'615046208', N'Shadow Dual Prop War Boots', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'2300', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011001', N'Great Fabric Belt', N'1', N'0', N'0', N'1', N'1', N'2', N'3000', N'0', N'0', N'2', N'200', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011002', N'Linen Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'5', N'3000', N'0', N'0', N'2', N'200', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011003', N'Fleece Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'8', N'3000', N'0', N'0', N'2', N'200', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011004', N'Silky Yarn Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'11', N'3000', N'0', N'0', N'2', N'200', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011005', N'Wool Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'14', N'3000', N'0', N'0', N'2', N'200', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011006', N'Silk Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'17', N'3000', N'0', N'0', N'2', N'200', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011007', N'Ram''s Wool Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'200', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011008', N'Muslin Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'23', N'3000', N'0', N'0', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011009', N'Luna Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'26', N'3000', N'0', N'0', N'2', N'200', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011010', N'Celestial Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'29', N'3000', N'0', N'0', N'2', N'200', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011011', N'Mystical Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'32', N'3000', N'0', N'0', N'2', N'200', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011012', N'Sorceress Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'35', N'3000', N'0', N'0', N'2', N'200', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011013', N'Angora Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'38', N'3000', N'0', N'0', N'2', N'200', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011014', N'Aramid Belt of Blood', N'1', N'0', N'0', N'1', N'1', N'41', N'3000', N'0', N'0', N'2', N'200', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011015', N'Great Berber Belt', N'1', N'0', N'0', N'1', N'1', N'44', N'3000', N'0', N'0', N'2', N'200', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011016', N'Great Brocade Belt', N'1', N'0', N'0', N'1', N'1', N'47', N'3000', N'0', N'0', N'2', N'200', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011017', N'Great Doeskin Belt', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'200', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616011018', N'Improved Weaving Belt', N'1', N'0', N'0', N'1', N'1', N'53', N'3000', N'0', N'0', N'2', N'200', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012001', N'Great Fabric Belt', N'1', N'0', N'0', N'1', N'2', N'3', N'3200', N'0', N'3', N'2', N'200', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012002', N'Linen Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'6', N'3200', N'0', N'3', N'2', N'200', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012003', N'Fleece Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'9', N'3200', N'0', N'3', N'2', N'200', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012004', N'Silky Yarn Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'12', N'3200', N'0', N'3', N'2', N'200', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012005', N'Wool Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'15', N'3200', N'0', N'3', N'2', N'200', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012006', N'Silk Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'18', N'3200', N'0', N'3', N'2', N'200', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012007', N'Ram''s Wool Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'21', N'3200', N'0', N'3', N'2', N'200', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012008', N'Muslin Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'24', N'3200', N'0', N'3', N'2', N'200', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012009', N'Luna Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'27', N'3200', N'0', N'3', N'2', N'200', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012010', N'Celestial Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'30', N'3200', N'0', N'3', N'2', N'200', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012011', N'Mystical Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'33', N'3200', N'0', N'3', N'2', N'200', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012012', N'Sorceress Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'36', N'3200', N'0', N'3', N'2', N'200', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012013', N'Angora Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'39', N'3200', N'0', N'3', N'2', N'200', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012014', N'Aramid Belt of Blood', N'1', N'0', N'0', N'1', N'2', N'42', N'3200', N'0', N'3', N'2', N'200', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012015', N'Great Berber Belt', N'1', N'0', N'0', N'1', N'2', N'45', N'3200', N'0', N'3', N'2', N'200', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012016', N'Great Brocade Belt', N'1', N'0', N'0', N'1', N'2', N'48', N'3200', N'0', N'3', N'2', N'200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012017', N'Great Doeskin Belt', N'1', N'0', N'0', N'1', N'2', N'51', N'3200', N'0', N'3', N'2', N'200', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616012018', N'Improved Nea Belt', N'1', N'0', N'0', N'1', N'2', N'54', N'3200', N'0', N'3', N'2', N'200', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014001', N'Lavish Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'3400', N'1', N'3', N'2', N'200', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014002', N'Insidious Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'3400', N'1', N'3', N'2', N'200', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014003', N'Exceptional Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'3400', N'1', N'3', N'2', N'200', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014004', N'Fervid Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'3400', N'1', N'3', N'2', N'200', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014005', N'Nefarious Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'3400', N'1', N'3', N'2', N'200', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014006', N'Diabolic Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'3400', N'1', N'3', N'2', N'200', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014007', N'Sacred Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'3400', N'1', N'3', N'2', N'200', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014008', N'Devious Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'3400', N'1', N'3', N'2', N'200', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014009', N'Distinct Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'3400', N'1', N'3', N'2', N'200', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014010', N'Taffeta Belt of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'3400', N'1', N'3', N'2', N'200', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616014011', N'Improved Obscure Belt', N'1', N'1', N'5', N'1', N'4', N'55', N'3400', N'1', N'3', N'2', N'200', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015001', N'Vital Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'3600', N'1', N'3', N'2', N'200', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015002', N'Wisdom Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'200', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015003', N'Bentus Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015004', N'Raschel Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'200', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015005', N'Calico Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'3600', N'1', N'3', N'2', N'200', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015006', N'Lumen Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'3600', N'1', N'3', N'2', N'200', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015007', N'Starlight Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'3600', N'1', N'3', N'2', N'200', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015008', N'Fluer Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'3600', N'1', N'3', N'2', N'200', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015009', N'Pincord Belt of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'3600', N'1', N'3', N'2', N'200', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015010', N'Improved Dusk Belt', N'1', N'1', N'3', N'1', N'5', N'55', N'3600', N'1', N'3', N'2', N'200', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015102', N'Bloody Wisdom Belt', N'1', N'1', N'3', N'1', N'5', N'15', N'3600', N'1', N'3', N'2', N'200', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015103', N'Bloody Ventus Belt', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015104', N'Bloody Silentium Belt', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'200', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015201', N'Shadow Bentus Belt', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'200', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616015202', N'Shadow Sirenchium Belt', N'1', N'1', N'3', N'1', N'5', N'25', N'3600', N'1', N'3', N'2', N'200', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016001', N'Danu Belt', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'200', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016002', N'Morpheus Belt', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'200', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016003', N'Memoria Belt', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'200', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016004', N'Lindsey Belt', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'200', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016005', N'Grace Belt', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'200', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016006', N'Grace Belt', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'200', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016101', N'Bloody Danu Belt', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'200', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016102', N'Bloody Morphous Belt', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'200', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016103', N'Bloody Memoria Belt', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'200', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016104', N'Bloody Lingee Belt', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'200', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016105', N'Bloody Grace Belt', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'200', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016106', N'Bloody Dominator Belt', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'200', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016203', N'Shadow Danu Belt', N'1', N'1', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'200', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016204', N'Shadow Morpheus Belt', N'1', N'1', N'2', N'1', N'6', N'35', N'4000', N'1', N'3', N'2', N'200', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016205', N'Shadow Memoria Belt', N'1', N'1', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'200', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016206', N'Shadow Linsey Belt', N'1', N'1', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'200', N'6080', N'1003')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016207', N'Shadow Grace Belt', N'1', N'1', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'200', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616016208', N'Shadow Dominator Belt', N'1', N'1', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'200', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021001', N'Great Light Leather Belt', N'1', N'0', N'0', N'2', N'1', N'2', N'3000', N'0', N'0', N'2', N'300', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021002', N'Leather Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'5', N'3000', N'0', N'0', N'2', N'300', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021003', N'Quilted Leather Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'8', N'3000', N'0', N'0', N'2', N'300', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021004', N'Studded Leather Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'11', N'3000', N'0', N'0', N'2', N'300', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021005', N'Heavy Leather Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'14', N'3000', N'0', N'0', N'2', N'300', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021006', N'Carp Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'17', N'3000', N'0', N'0', N'2', N'300', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021007', N'Suede Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'300', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021008', N'Nubuck Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'23', N'3000', N'0', N'0', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021009', N'Slink Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'26', N'3000', N'0', N'0', N'2', N'300', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021010', N'Hide Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'29', N'3000', N'0', N'0', N'2', N'300', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021011', N'Buckskin Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'32', N'3000', N'0', N'0', N'2', N'300', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021012', N'Shagreen Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'35', N'3000', N'0', N'0', N'2', N'300', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021013', N'Lamellar Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'38', N'3000', N'0', N'0', N'2', N'300', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021014', N'Brigandine Belt of Blood', N'1', N'0', N'0', N'2', N'1', N'41', N'3000', N'0', N'0', N'2', N'300', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021015', N'Great Lorica Belt', N'1', N'0', N'0', N'2', N'1', N'44', N'3000', N'0', N'0', N'2', N'300', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021016', N'Great Swollen Leather Belt', N'1', N'0', N'0', N'2', N'1', N'47', N'3000', N'0', N'0', N'2', N'300', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021017', N'Great Sinful Leather Belt', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'300', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616021018', N'Improved Artisanal Leather Belt', N'1', N'0', N'0', N'2', N'1', N'53', N'3000', N'0', N'0', N'2', N'300', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022001', N'Great Light Leather Belt', N'1', N'0', N'0', N'2', N'2', N'3', N'3200', N'0', N'3', N'2', N'300', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022002', N'Leather Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'6', N'3200', N'0', N'3', N'2', N'300', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022003', N'Quilted Leather Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'9', N'3200', N'0', N'3', N'2', N'300', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022004', N'Studded Leather Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'12', N'3200', N'0', N'3', N'2', N'300', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022005', N'Heavy Leather Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'15', N'3200', N'0', N'3', N'2', N'300', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022006', N'Carp Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'18', N'3200', N'0', N'3', N'2', N'300', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022007', N'Suede Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'21', N'3200', N'0', N'3', N'2', N'300', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022008', N'Nubuck Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'24', N'3200', N'0', N'3', N'2', N'300', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022009', N'Slink Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'27', N'3200', N'0', N'3', N'2', N'300', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022010', N'Hide Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'30', N'3200', N'0', N'3', N'2', N'300', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022011', N'Buckskin Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'33', N'3200', N'0', N'3', N'2', N'300', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022012', N'Shagreen Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'36', N'3200', N'0', N'3', N'2', N'300', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022013', N'Lamellar Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'39', N'3200', N'0', N'3', N'2', N'300', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022014', N'Brigandine Belt of Blood', N'1', N'0', N'0', N'2', N'2', N'42', N'3200', N'0', N'3', N'2', N'300', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022015', N'Great Lorica Belt', N'1', N'0', N'0', N'2', N'2', N'45', N'3200', N'0', N'3', N'2', N'300', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022016', N'Great Swollen Leather Belt', N'1', N'0', N'0', N'2', N'2', N'48', N'3200', N'0', N'3', N'2', N'300', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022017', N'Great Sinful Leather Belt', N'1', N'0', N'0', N'2', N'2', N'51', N'3200', N'0', N'3', N'2', N'300', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616022018', N'Improved DS Leather Belt', N'1', N'0', N'0', N'2', N'2', N'54', N'3200', N'0', N'3', N'2', N'300', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024001', N'Authentic Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'3400', N'1', N'3', N'2', N'300', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024002', N'Camouflage Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'3400', N'1', N'3', N'2', N'300', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024003', N'Illicit Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'3400', N'1', N'3', N'2', N'300', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024004', N'Rugged Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'3400', N'1', N'3', N'2', N'300', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024005', N'Dread Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'3400', N'1', N'3', N'2', N'300', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024006', N'Tough Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'3400', N'1', N'3', N'2', N'300', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024007', N'Haken-hide Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'3400', N'1', N'3', N'2', N'300', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024008', N'Combat Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'3400', N'1', N'3', N'2', N'300', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024009', N'Genuine Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'3400', N'1', N'3', N'2', N'300', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024010', N'Superior Leather Belt of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'3400', N'1', N'3', N'2', N'300', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616024011', N'Improved Posh Leather Belt', N'1', N'1', N'5', N'2', N'4', N'55', N'3400', N'1', N'3', N'2', N'300', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025001', N'Tanned Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'3600', N'1', N'3', N'2', N'300', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025002', N'Rawhide Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'300', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025003', N'Demonic Leather Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025004', N'Praetorian Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'300', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025005', N'Lacrimal Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'3600', N'1', N'3', N'2', N'300', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025006', N'Eminent Leather Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'3600', N'1', N'3', N'2', N'300', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025007', N'Aquarius Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'3600', N'1', N'3', N'2', N'300', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025008', N'Rogue Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'3600', N'1', N'3', N'2', N'300', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025009', N'Fianna Belt of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'3600', N'1', N'3', N'2', N'300', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025010', N'Improved Arcane Leather Belt', N'1', N'1', N'3', N'2', N'5', N'55', N'3600', N'1', N'3', N'2', N'300', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025102', N'Bloody Dried Leather Belt', N'1', N'1', N'3', N'2', N'5', N'15', N'3600', N'1', N'3', N'2', N'300', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025103', N'Bloody Descend Leather Belt', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025104', N'Bloody Predator Leather Belt', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'300', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025201', N'Shadow Descend Leather Belt', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'300', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616025202', N'Shadow Praeterita Leather Belt', N'1', N'1', N'3', N'2', N'5', N'25', N'3600', N'1', N'3', N'2', N'300', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026001', N'Airgetlam Leather Belt', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'300', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026002', N'Lir Leather Belt', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'300', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026003', N'Mir Leather Belt', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'300', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026004', N'Ellodi Leather Belt', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'300', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026005', N'Blast Leather Belt', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'300', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026006', N'Blast Leather Belt', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'300', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026101', N'Bloody Alrget-Lamh Leather Belt', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'300', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026102', N'Bloody Lyre Leather Belt', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'300', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026103', N'Bloody Mir Leather Belt', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'300', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026104', N'Bloody Elody Leather Belt', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'300', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026105', N'Bloody Blast Leather Belt', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'300', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026106', N'Bloody Levices Belt', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'300', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026203', N'Shadow Airgetlam Leather Belt', N'1', N'1', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'300', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026204', N'Shadow Lir Leather Belt', N'1', N'1', N'2', N'2', N'6', N'35', N'4000', N'1', N'3', N'2', N'300', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026205', N'Shadow Mir Leather Belt', N'1', N'1', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'300', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026206', N'Shadow Elody Leather Belt', N'1', N'1', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'300', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026207', N'Shadow Blast Leather Belt', N'1', N'1', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'300', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616026208', N'Shadow Levices Belt', N'1', N'1', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'300', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031001', N'Great Tedder Belt', N'1', N'0', N'0', N'3', N'1', N'2', N'3000', N'0', N'0', N'2', N'500', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031002', N'Chain Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'5', N'3000', N'0', N'0', N'2', N'500', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031003', N'Wire Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'8', N'3000', N'0', N'0', N'2', N'500', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031004', N'Hunter Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'11', N'3000', N'0', N'0', N'2', N'500', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031005', N'Battle Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'14', N'3000', N'0', N'0', N'2', N'500', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031006', N'Devout Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'17', N'3000', N'0', N'0', N'2', N'500', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031007', N'Banded Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'500', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031008', N'Linked Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'23', N'3000', N'0', N'0', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031009', N'Splinted Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'26', N'3000', N'0', N'0', N'2', N'500', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031010', N'Rivet Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'29', N'3000', N'0', N'0', N'2', N'500', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031011', N'Venetian Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'32', N'3000', N'0', N'0', N'2', N'500', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031012', N'Arquebus Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'35', N'3000', N'0', N'0', N'2', N'500', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031013', N'Acorn Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'38', N'3000', N'0', N'0', N'2', N'500', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031014', N'Aventail Belt of Blood', N'1', N'0', N'0', N'3', N'1', N'41', N'3000', N'0', N'0', N'2', N'500', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031015', N'Great Chain Belt', N'1', N'0', N'0', N'3', N'1', N'44', N'3000', N'0', N'0', N'2', N'500', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031016', N'Great Genovese Belt', N'1', N'0', N'0', N'3', N'1', N'47', N'3000', N'0', N'0', N'2', N'500', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031017', N'Great Peltman Chain Belt', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'500', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616031018', N'Improved Concours Chain Belt', N'1', N'0', N'0', N'3', N'1', N'53', N'3000', N'0', N'0', N'2', N'500', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032001', N'Great Tedder Belt', N'1', N'0', N'0', N'3', N'2', N'3', N'3200', N'0', N'3', N'2', N'500', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032002', N'Chain Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'6', N'3200', N'0', N'3', N'2', N'500', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032003', N'Wire Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'9', N'3200', N'0', N'3', N'2', N'500', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032004', N'Hunter Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'12', N'3200', N'0', N'3', N'2', N'500', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032005', N'Battle Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'15', N'3200', N'0', N'3', N'2', N'500', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032006', N'Devout Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'18', N'3200', N'0', N'3', N'2', N'500', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032007', N'Banded Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'21', N'3200', N'0', N'3', N'2', N'500', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032008', N'Linked Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'24', N'3200', N'0', N'3', N'2', N'500', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032009', N'Splinted Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'27', N'3200', N'0', N'3', N'2', N'500', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032010', N'Rivet Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'30', N'3200', N'0', N'3', N'2', N'500', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032011', N'Venetian Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'33', N'3200', N'0', N'3', N'2', N'500', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032012', N'Arquebus Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'36', N'3200', N'0', N'3', N'2', N'500', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032013', N'Acorn Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'39', N'3200', N'0', N'3', N'2', N'500', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032014', N'Aventail Belt of Blood', N'1', N'0', N'0', N'3', N'2', N'42', N'3200', N'0', N'3', N'2', N'500', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032015', N'Great Chain Belt', N'1', N'0', N'0', N'3', N'2', N'45', N'3200', N'0', N'3', N'2', N'500', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032016', N'Great Genovese Belt', N'1', N'0', N'0', N'3', N'2', N'48', N'3200', N'0', N'3', N'2', N'500', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032017', N'Great Peltman Chain Belt', N'1', N'0', N'0', N'3', N'2', N'51', N'3200', N'0', N'3', N'2', N'500', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616032018', N'Improved Natura Chain Belt', N'1', N'0', N'0', N'3', N'2', N'54', N'3200', N'0', N'3', N'2', N'500', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034001', N'Gritty Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'3400', N'1', N'3', N'2', N'500', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034002', N'Heavy Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'3400', N'1', N'3', N'2', N'500', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034003', N'Ultimate Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'3400', N'1', N'3', N'2', N'500', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034004', N'Brisk Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'3400', N'1', N'3', N'2', N'500', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034005', N'Bound Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'3400', N'1', N'3', N'2', N'500', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034006', N'Secure Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'3400', N'1', N'3', N'2', N'500', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034007', N'Devout Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'3400', N'1', N'3', N'2', N'500', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034008', N'Solid Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'3400', N'1', N'3', N'2', N'500', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034009', N'Discarded Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'3400', N'1', N'3', N'2', N'500', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034010', N'Engraved Chain Belt of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'3400', N'1', N'3', N'2', N'500', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616034011', N'Improved Cure Chain Belt', N'1', N'1', N'5', N'3', N'4', N'55', N'3400', N'1', N'3', N'2', N'500', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035001', N'Dense Chain Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'3600', N'1', N'3', N'2', N'500', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035002', N'Burnished Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'500', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035003', N'Ribbed Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035004', N'Arcane Chain Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'500', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035005', N'Ashen Chain Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'3600', N'1', N'3', N'2', N'500', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035006', N'Placidus Chain Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'3600', N'1', N'3', N'2', N'500', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035007', N'Armadillo Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'3600', N'1', N'3', N'2', N'500', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035008', N'Bulwark Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'3600', N'1', N'3', N'2', N'500', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035009', N'Cardiff Chain Belt of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'3600', N'1', N'3', N'2', N'500', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035010', N'Improved Armed Chain Belt', N'1', N'1', N'3', N'3', N'5', N'55', N'3600', N'1', N'3', N'2', N'500', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035102', N'Bloody Pleasure Chain Belt', N'1', N'1', N'3', N'3', N'5', N'15', N'3600', N'1', N'3', N'2', N'500', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035103', N'Bloody Rebellion Chain Belt', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035104', N'Bloody Velum Chain Belt', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'500', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035201', N'Shadow Riberion Chain Belt', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'500', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616035202', N'Shadow Velum Chain Belt', N'1', N'1', N'3', N'3', N'5', N'25', N'3600', N'1', N'3', N'2', N'500', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036001', N'Ecne Chain Belt', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'500', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036002', N'Jamel Ducob Chain Belt', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'500', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036003', N'Badb Catha Chain Belt', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'500', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036004', N'Hinchi Chain Belt', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'500', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036005', N'Soul Eater''s Chain Belt', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'500', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036006', N'Soul Eater''s Chain Belt', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'500', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036101', N'Bloody Ecne Chain Belt', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'500', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036102', N'Bloody Jamelducov Chain Belt', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'500', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036103', N'Bloody Badhdh Cath Chain Belt', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'500', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036104', N'Bloody Hinche Chain Belt', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'500', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036105', N'Bloody Soul-Eater Chain Belt', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'500', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036106', N'Bloody Silver Tinge Belt', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'500', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036203', N'Shadow Ecne Chain Belt', N'1', N'1', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'500', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036204', N'Shadow Jamel Ducob Chain Belt', N'1', N'1', N'2', N'3', N'6', N'35', N'4000', N'1', N'3', N'2', N'500', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036205', N'Shadow Babd Catha Chain Belt', N'1', N'1', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'500', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036206', N'Shadow Hinchi Chain Belt', N'1', N'1', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'500', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036207', N'Shadow Soul Eater''s Chain Belt', N'1', N'1', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'500', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616036208', N'Shadow Silver Tinge Belt', N'1', N'1', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'500', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041001', N'Great Fryderyk War Belt', N'1', N'0', N'0', N'4', N'1', N'2', N'3000', N'0', N'0', N'2', N'900', N'60', N'9')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041002', N'Padded War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'5', N'3000', N'0', N'0', N'2', N'900', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041003', N'Hauberk War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'8', N'3000', N'0', N'0', N'2', N'900', N'330', N'55')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041004', N'Scale War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'11', N'3000', N'0', N'0', N'2', N'900', N'500', N'82')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041005', N'Steel War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'14', N'3000', N'0', N'0', N'2', N'900', N'720', N'118')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041006', N'Spiral War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'17', N'3000', N'0', N'0', N'2', N'900', N'960', N'158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041007', N'Hoplite Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1230', N'203')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041008', N'Full War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'23', N'3000', N'0', N'0', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041009', N'Ornate War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'26', N'3000', N'0', N'0', N'2', N'900', N'1870', N'309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041010', N'Rune War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'29', N'3000', N'0', N'0', N'2', N'900', N'2240', N'369')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041011', N'Raven War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'32', N'3000', N'0', N'0', N'2', N'900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041012', N'Castilian Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'35', N'3000', N'0', N'0', N'2', N'900', N'3060', N'504')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041013', N'Baleog War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'38', N'3000', N'0', N'0', N'2', N'900', N'3520', N'580')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041014', N'Drake War Belt of Blood', N'1', N'0', N'0', N'4', N'1', N'41', N'3000', N'0', N'0', N'2', N'900', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041015', N'Great Crysis War Belt', N'1', N'0', N'0', N'4', N'1', N'44', N'3000', N'0', N'0', N'2', N'900', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041016', N'Great Traviron War Belt', N'1', N'0', N'0', N'4', N'1', N'47', N'3000', N'0', N'0', N'2', N'900', N'5090', N'840')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041017', N'Great Dragoon Belt', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'5670', N'936')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616041018', N'Improved Watcher''s War Belt', N'1', N'0', N'0', N'4', N'1', N'53', N'3000', N'0', N'0', N'2', N'900', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042001', N'Great Fryderyk War Belt', N'1', N'0', N'0', N'4', N'2', N'3', N'3200', N'0', N'3', N'2', N'900', N'100', N'16')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042002', N'Padded War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'6', N'3200', N'0', N'3', N'2', N'900', N'240', N'39')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042003', N'Hauberk War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'9', N'3200', N'0', N'3', N'2', N'900', N'410', N'68')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042004', N'Scale War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'12', N'3200', N'0', N'3', N'2', N'900', N'610', N'101')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042005', N'Steel War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'15', N'3200', N'0', N'3', N'2', N'900', N'840', N'138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042006', N'Spiral War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'18', N'3200', N'0', N'3', N'2', N'900', N'1110', N'183')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042007', N'Hoplite Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'21', N'3200', N'0', N'3', N'2', N'900', N'1410', N'233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042008', N'Full War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'24', N'3200', N'0', N'3', N'2', N'900', N'1750', N'289')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042009', N'Ornate War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'27', N'3200', N'0', N'3', N'2', N'900', N'2120', N'349')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042010', N'Rune War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2520', N'415')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042011', N'Raven War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'33', N'3200', N'0', N'3', N'2', N'900', N'2950', N'487')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042012', N'Castilian Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'36', N'3200', N'0', N'3', N'2', N'900', N'3420', N'564')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042013', N'Baleog War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'39', N'3200', N'0', N'3', N'2', N'900', N'3920', N'646')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042014', N'Drake War Belt of Blood', N'1', N'0', N'0', N'4', N'2', N'42', N'3200', N'0', N'3', N'2', N'900', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042015', N'Great Crysis War Belt', N'1', N'0', N'0', N'4', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5020', N'828')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042016', N'Great Traviron War Belt', N'1', N'0', N'0', N'4', N'2', N'48', N'3200', N'0', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042017', N'Great Dragoon Belt', N'1', N'0', N'0', N'4', N'2', N'51', N'3200', N'0', N'3', N'2', N'900', N'6240', N'1029')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616042018', N'Improved Repel War Belt', N'1', N'0', N'0', N'4', N'2', N'54', N'3200', N'0', N'3', N'2', N'900', N'6910', N'1140')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044001', N'Shining Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'3400', N'1', N'3', N'2', N'900', N'210', N'35')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044002', N'Dazzling Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'3400', N'1', N'3', N'2', N'900', N'520', N'85')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044003', N'Assault War Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'3400', N'1', N'3', N'2', N'900', N'940', N'155')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044004', N'Gendarme Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1460', N'240')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044005', N'Enduring War Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'3400', N'1', N'3', N'2', N'900', N'2090', N'345')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044006', N'Jousting Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'2810', N'464')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044007', N'Stark Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'3400', N'1', N'3', N'2', N'900', N'3640', N'600')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044008', N'Menacing Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'4570', N'754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044009', N'Hazardous War Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044010', N'Expert Belt of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'6740', N'1112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616044011', N'Improved Suspicious War Belt', N'1', N'1', N'5', N'4', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'7980', N'1317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045001', N'Doomed Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'3600', N'1', N'3', N'2', N'900', N'550', N'91')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045002', N'Essential War Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045003', N'Blazing Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045004', N'Infernal War Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045005', N'Field Marshal Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'2960', N'488')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045006', N'Destined Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'3600', N'1', N'3', N'2', N'900', N'3830', N'632')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045007', N'Knightly Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'4810', N'794')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045008', N'Fergana War Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'5900', N'973')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045009', N'Avernus Belt of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7090', N'1170')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045010', N'Improved Flame War Belt', N'1', N'1', N'3', N'4', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'8400', N'1386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045102', N'Bloody Essential War Belt', N'1', N'1', N'3', N'4', N'5', N'15', N'3600', N'1', N'3', N'2', N'900', N'990', N'163')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045103', N'Bloody Blaze War Belt', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045104', N'Bloody Inferna War Belt', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045201', N'Shadow Blaze War Belt', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1540', N'254')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616045202', N'Shadow Infernal War Belt', N'1', N'1', N'3', N'4', N'5', N'25', N'3600', N'1', N'3', N'2', N'900', N'2200', N'363')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046001', N'Cruach War Belt', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046002', N'Moyitura War Belt', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046003', N'Forwar War Belt', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046004', N'Banded War Belt', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046005', N'Unbreakable War Belt', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046006', N'Unbreakable War Belt', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046101', N'Bloody Cruaich War Belt', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046102', N'Bloody Moitura War Belt', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046103', N'Bloody For War War Belt', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046104', N'Bloody Bandeda War Belt', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046105', N'Bloody Unbreakable War Belt', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046106', N'Bloody Dual Prop Belt', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046203', N'Shadow Cruach War Belt', N'1', N'1', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3110', N'513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046204', N'Shadow Moyitura War Belt', N'1', N'1', N'2', N'4', N'6', N'35', N'4000', N'1', N'3', N'2', N'900', N'4020', N'663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046205', N'Shadow Forwar War Belt', N'1', N'1', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5050', N'833')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046206', N'Shadow Banded War Belt', N'1', N'1', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6080', N'1004')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046207', N'Shadow Unbreakable War Belt', N'1', N'1', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'7110', N'1175')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'616046208', N'Shadow Dual Prop Belt', N'1', N'1', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011001', N'Fabric Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'3', N'4000', N'0', N'0', N'2', N'300', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011002', N'Linen Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'6', N'4000', N'0', N'0', N'2', N'300', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011003', N'Fleece Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'9', N'4000', N'0', N'0', N'2', N'300', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011004', N'Silky Yarn Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'12', N'4000', N'0', N'0', N'2', N'300', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011005', N'Wool Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'15', N'4000', N'0', N'0', N'2', N'300', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011006', N'Silk Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'18', N'4000', N'0', N'0', N'2', N'300', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011007', N'Ram''s Wool Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'21', N'4000', N'0', N'0', N'2', N'300', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011008', N'Muslin Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'24', N'4000', N'0', N'0', N'2', N'300', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011009', N'Luna Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'27', N'4000', N'0', N'0', N'2', N'300', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011010', N'Celestial Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'300', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011011', N'Mystical Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'33', N'4000', N'0', N'0', N'2', N'300', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011012', N'Sorceress Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'36', N'4000', N'0', N'0', N'2', N'300', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011013', N'Angora Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'39', N'4000', N'0', N'0', N'2', N'300', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011014', N'Aramid Gloves of Blood', N'1', N'0', N'0', N'1', N'1', N'42', N'4000', N'0', N'0', N'2', N'300', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011015', N'Great Berber Gloves', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'300', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011016', N'Great Brocade Gloves', N'1', N'0', N'0', N'1', N'1', N'48', N'4000', N'0', N'0', N'2', N'300', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011017', N'Great Doeskin Gloves', N'1', N'0', N'0', N'1', N'1', N'51', N'4000', N'0', N'0', N'2', N'300', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620011018', N'Improved Weaving Gloves', N'1', N'0', N'0', N'1', N'1', N'54', N'4000', N'0', N'0', N'2', N'300', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012001', N'Fabric Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'4', N'4200', N'0', N'3', N'2', N'300', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012002', N'Linen Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'7', N'4200', N'0', N'3', N'2', N'300', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012003', N'Fleece Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'10', N'4200', N'0', N'3', N'2', N'300', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012004', N'Silky Yarn Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'13', N'4200', N'0', N'3', N'2', N'300', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012005', N'Wool Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'16', N'4200', N'0', N'3', N'2', N'300', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012006', N'Silk Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'19', N'4200', N'0', N'3', N'2', N'300', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012007', N'Ram''s Wool Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'22', N'4200', N'0', N'3', N'2', N'300', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012008', N'Muslin Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'25', N'4200', N'0', N'3', N'2', N'300', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012009', N'Luna Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'28', N'4200', N'0', N'3', N'2', N'300', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012010', N'Celestial Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'31', N'4200', N'0', N'3', N'2', N'300', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012011', N'Mystical Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'34', N'4200', N'0', N'3', N'2', N'300', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012012', N'Sorceress Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'37', N'4200', N'0', N'3', N'2', N'300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012013', N'Angora Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'40', N'4200', N'0', N'3', N'2', N'300', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012014', N'Aramid Gloves of Blood', N'1', N'0', N'0', N'1', N'2', N'43', N'4200', N'0', N'3', N'2', N'300', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012015', N'Great Berber Gloves', N'1', N'0', N'0', N'1', N'2', N'46', N'4200', N'0', N'3', N'2', N'300', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012016', N'Great Brocade Gloves', N'1', N'0', N'0', N'1', N'2', N'49', N'4200', N'0', N'3', N'2', N'300', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012017', N'Great Doeskin Gloves', N'1', N'0', N'0', N'1', N'2', N'52', N'4200', N'0', N'3', N'2', N'300', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620012018', N'Improved Nea Gloves', N'1', N'0', N'0', N'1', N'2', N'55', N'4200', N'0', N'3', N'2', N'300', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014001', N'Lavish Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'5', N'4400', N'1', N'3', N'2', N'300', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014002', N'Insidious Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'10', N'4400', N'1', N'3', N'2', N'300', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014003', N'Exceptional Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'15', N'4400', N'1', N'3', N'2', N'300', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014004', N'Fervid Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'20', N'4400', N'1', N'3', N'2', N'300', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014005', N'Nefarious Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'25', N'4400', N'1', N'3', N'2', N'300', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014006', N'Diabolic Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'300', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014007', N'Sacred Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'35', N'4400', N'1', N'3', N'2', N'300', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014008', N'Devious Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'40', N'4400', N'1', N'3', N'2', N'300', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014009', N'Distinct Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'45', N'4400', N'1', N'3', N'2', N'300', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014010', N'Taffeta Gloves of Blood', N'1', N'1', N'5', N'1', N'4', N'50', N'4400', N'1', N'3', N'2', N'300', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620014011', N'Improved Obscure Gloves', N'1', N'1', N'5', N'1', N'4', N'55', N'4400', N'1', N'3', N'2', N'300', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015001', N'Vital Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'10', N'4600', N'1', N'3', N'2', N'300', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015002', N'Wisdom Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'300', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015003', N'Bentus Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015004', N'Raschel Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'300', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015005', N'Calico Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'30', N'4600', N'1', N'3', N'2', N'300', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015006', N'Lumen Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'35', N'4600', N'1', N'3', N'2', N'300', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015007', N'Starlight Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'40', N'4600', N'1', N'3', N'2', N'300', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015008', N'Fluer Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'45', N'4600', N'1', N'3', N'2', N'300', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015009', N'Pincord Gloves of Blood', N'1', N'1', N'3', N'1', N'5', N'50', N'4600', N'1', N'3', N'2', N'300', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015010', N'Improved Dusk Gloves', N'1', N'1', N'3', N'1', N'5', N'55', N'4600', N'1', N'3', N'2', N'300', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015102', N'Bloody Wisdom Gloves', N'1', N'1', N'3', N'1', N'5', N'15', N'4600', N'1', N'3', N'2', N'300', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015103', N'Bloody Ventus Gloves', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015104', N'Bloody Silentium Gloves', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'300', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015201', N'Shadow Bentus Gloves', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'300', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620015202', N'Shadow Sirenchium Gloves', N'1', N'1', N'3', N'1', N'5', N'25', N'4600', N'1', N'3', N'2', N'300', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016001', N'Danu Gloves', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'300', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016002', N'Morpheus Gloves', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'300', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016003', N'Memoria Gloves', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'300', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016004', N'Lindsey Gloves', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'300', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016005', N'Grace Gloves', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'300', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016006', N'Grace Gloves', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'300', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016101', N'Bloody Danu Gloves', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'300', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016102', N'Bloody Morphous Gloves', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'300', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016103', N'Bloody Memoria Gloves', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'300', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016104', N'Bloody Lingee Gloves', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'300', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016105', N'Bloody Grace Gloves', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'300', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016106', N'Bloody Dominator Gloves', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'300', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016203', N'Shadow Danu Gloves', N'1', N'1', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'300', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016204', N'Shadow Morpheus Gloves', N'1', N'1', N'2', N'1', N'6', N'35', N'5000', N'1', N'3', N'2', N'300', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016205', N'Shadow Memoria Gloves', N'1', N'1', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'300', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016206', N'Shadow Linsey Gloves', N'1', N'1', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'300', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016207', N'Shadow Grace Gloves', N'1', N'1', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'300', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620016208', N'Shadow Dominator Gloves', N'1', N'1', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'300', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021001', N'Light Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'3', N'4000', N'0', N'0', N'2', N'400', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021002', N'Layered Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'6', N'4000', N'0', N'0', N'2', N'400', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021003', N'Quilted Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'9', N'4000', N'0', N'0', N'2', N'400', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021004', N'Studded Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'12', N'4000', N'0', N'0', N'2', N'400', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021005', N'Hunter Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'15', N'4000', N'0', N'0', N'2', N'400', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021006', N'Carp Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'18', N'4000', N'0', N'0', N'2', N'400', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021007', N'Suede Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'21', N'4000', N'0', N'0', N'2', N'400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021008', N'Nubuck Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'24', N'4000', N'0', N'0', N'2', N'400', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021009', N'Slink Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'27', N'4000', N'0', N'0', N'2', N'400', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021010', N'Hide Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'400', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021011', N'Buckskin Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'33', N'4000', N'0', N'0', N'2', N'400', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021012', N'Shagreen Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'36', N'4000', N'0', N'0', N'2', N'400', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021013', N'Lamellar Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'39', N'4000', N'0', N'0', N'2', N'400', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021014', N'Brigandine Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'1', N'42', N'4000', N'0', N'0', N'2', N'400', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021015', N'Great Lorica Gloves', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'400', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021016', N'Great Swollen Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'48', N'4000', N'0', N'0', N'2', N'400', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021017', N'Great Sinful Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'51', N'4000', N'0', N'0', N'2', N'400', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620021018', N'Improved Artisanal Leather Gloves', N'1', N'0', N'0', N'2', N'1', N'54', N'4000', N'0', N'0', N'2', N'400', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022001', N'Light Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'4', N'4200', N'0', N'3', N'2', N'400', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022002', N'Layered Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'7', N'4200', N'0', N'3', N'2', N'400', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022003', N'Quilted Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'10', N'4200', N'0', N'3', N'2', N'400', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022004', N'Studded Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'13', N'4200', N'0', N'3', N'2', N'400', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022005', N'Hunter Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'16', N'4200', N'0', N'3', N'2', N'400', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022006', N'Carp Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'19', N'4200', N'0', N'3', N'2', N'400', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022007', N'Suede Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'22', N'4200', N'0', N'3', N'2', N'400', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022008', N'Nubuck Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'25', N'4200', N'0', N'3', N'2', N'400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022009', N'Slink Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'28', N'4200', N'0', N'3', N'2', N'400', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022010', N'Hide Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'31', N'4200', N'0', N'3', N'2', N'400', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022011', N'Buckskin Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'34', N'4200', N'0', N'3', N'2', N'400', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022012', N'Shagreen Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'37', N'4200', N'0', N'3', N'2', N'400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022013', N'Lamellar Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'40', N'4200', N'0', N'3', N'2', N'400', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022014', N'Brigandine Leather Gloves of Blood', N'1', N'0', N'0', N'2', N'2', N'43', N'4200', N'0', N'3', N'2', N'400', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022015', N'Great Lorica Gloves', N'1', N'0', N'0', N'2', N'2', N'46', N'4200', N'0', N'3', N'2', N'400', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022016', N'Great Swollen Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'49', N'4200', N'0', N'3', N'2', N'400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022017', N'Great Sinful Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'52', N'4200', N'0', N'3', N'2', N'400', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620022018', N'Improved DS Leather Gloves', N'1', N'0', N'0', N'2', N'2', N'55', N'4200', N'0', N'3', N'2', N'400', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024001', N'Authentic Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'5', N'4400', N'1', N'3', N'2', N'400', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024002', N'Camouflage Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'10', N'4400', N'1', N'3', N'2', N'400', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024003', N'Illicit Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'15', N'4400', N'1', N'3', N'2', N'400', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024004', N'Rugged Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'20', N'4400', N'1', N'3', N'2', N'400', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024005', N'Dread Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'25', N'4400', N'1', N'3', N'2', N'400', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024006', N'Tough Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'400', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024007', N'Haken-hide Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'35', N'4400', N'1', N'3', N'2', N'400', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024008', N'Combat Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'40', N'4400', N'1', N'3', N'2', N'400', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024009', N'Genuine Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'45', N'4400', N'1', N'3', N'2', N'400', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024010', N'Superior Leather Gloves of Blood', N'1', N'1', N'5', N'2', N'4', N'50', N'4400', N'1', N'3', N'2', N'400', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620024011', N'Improved Posh Leather Gloves', N'1', N'1', N'5', N'2', N'4', N'55', N'4400', N'1', N'3', N'2', N'400', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025001', N'Tanned Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'10', N'4600', N'1', N'3', N'2', N'400', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025002', N'Rawhide Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'400', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025003', N'Demonic Leather Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025004', N'Praetorian Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'400', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025005', N'Lacrimal Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'30', N'4600', N'1', N'3', N'2', N'400', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025006', N'Eminent Leather Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'35', N'4600', N'1', N'3', N'2', N'400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025007', N'Aquarius Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'40', N'4600', N'1', N'3', N'2', N'400', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025008', N'Rogue Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'45', N'4600', N'1', N'3', N'2', N'400', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025009', N'Fianna Gloves of Blood', N'1', N'1', N'3', N'2', N'5', N'50', N'4600', N'1', N'3', N'2', N'400', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025010', N'Improved Arcane Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'55', N'4600', N'1', N'3', N'2', N'400', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025102', N'Bloody Dried Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'15', N'4600', N'1', N'3', N'2', N'400', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025103', N'Bloody Descend Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025104', N'Bloody Predator Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'400', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025201', N'Shadow Descend Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'400', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620025202', N'Shadow Praeterita Leather Gloves', N'1', N'1', N'3', N'2', N'5', N'25', N'4600', N'1', N'3', N'2', N'400', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026001', N'Airgetlam Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'400', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026002', N'Lir Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'400', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026003', N'Mir Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'400', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026004', N'Ellodi Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'400', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026005', N'Blast Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'400', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026006', N'Blast Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'400', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026101', N'Bloody Alrget-Lamh Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'400', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026102', N'Bloody Lyre Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'400', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026103', N'Bloody Mir Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'400', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026104', N'Bloody Elody Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'400', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026105', N'Bloody Blast Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'400', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026106', N'Bloody Levices Gloves', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'400', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026203', N'Shadow Airgetlam Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'30', N'5000', N'1', N'3', N'2', N'400', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026204', N'Shadow Lir Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'35', N'5000', N'1', N'3', N'2', N'400', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026205', N'Shadow Mir Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'400', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026206', N'Shadow Elody Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'45', N'5000', N'1', N'3', N'2', N'400', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026207', N'Shadow Blast Leather Gloves', N'1', N'1', N'2', N'2', N'6', N'50', N'5000', N'1', N'3', N'2', N'400', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620026208', N'Shadow Levices Gloves', N'1', N'1', N'2', N'2', N'6', N'55', N'5000', N'1', N'3', N'2', N'400', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031001', N'Ringed Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'3', N'4000', N'0', N'0', N'2', N'600', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031002', N'Hooked Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'6', N'4000', N'0', N'0', N'2', N'600', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031003', N'Wire Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'9', N'4000', N'0', N'0', N'2', N'600', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031004', N'Hunter Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'12', N'4000', N'0', N'0', N'2', N'600', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031005', N'Battle Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'15', N'4000', N'0', N'0', N'2', N'600', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031006', N'Devout Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'18', N'4000', N'0', N'0', N'2', N'600', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031007', N'Banded Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'21', N'4000', N'0', N'0', N'2', N'600', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031008', N'Linked Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'24', N'4000', N'0', N'0', N'2', N'600', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031009', N'Splinted Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'27', N'4000', N'0', N'0', N'2', N'600', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031010', N'Rivet Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031011', N'Venetian Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'33', N'4000', N'0', N'0', N'2', N'600', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031012', N'Arquebus Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'36', N'4000', N'0', N'0', N'2', N'600', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031013', N'Acorn Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'39', N'4000', N'0', N'0', N'2', N'600', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031014', N'Aventail Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'1', N'42', N'4000', N'0', N'0', N'2', N'600', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031015', N'Great Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031016', N'Great Genovese Gloves', N'1', N'0', N'0', N'3', N'1', N'48', N'4000', N'0', N'0', N'2', N'600', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031017', N'Great Peltman Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'51', N'4000', N'0', N'0', N'2', N'600', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620031018', N'Improved Concours Chain Gloves', N'1', N'0', N'0', N'3', N'1', N'54', N'4000', N'0', N'0', N'2', N'600', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032001', N'Ringed Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'4', N'4200', N'0', N'3', N'2', N'600', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032002', N'Hooked Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'7', N'4200', N'0', N'3', N'2', N'600', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032003', N'Wire Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'10', N'4200', N'0', N'3', N'2', N'600', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032004', N'Hunter Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'13', N'4200', N'0', N'3', N'2', N'600', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032005', N'Battle Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'16', N'4200', N'0', N'3', N'2', N'600', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032006', N'Devout Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'19', N'4200', N'0', N'3', N'2', N'600', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032007', N'Banded Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'22', N'4200', N'0', N'3', N'2', N'600', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032008', N'Linked Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'25', N'4200', N'0', N'3', N'2', N'600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032009', N'Splinted Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'28', N'4200', N'0', N'3', N'2', N'600', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032010', N'Rivet Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'31', N'4200', N'0', N'3', N'2', N'600', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032011', N'Venetian Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'34', N'4200', N'0', N'3', N'2', N'600', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032012', N'Arquebus Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'37', N'4200', N'0', N'3', N'2', N'600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032013', N'Acorn Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'40', N'4200', N'0', N'3', N'2', N'600', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032014', N'Aventail Chain Gloves of Blood', N'1', N'0', N'0', N'3', N'2', N'43', N'4200', N'0', N'3', N'2', N'600', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032015', N'Great Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'46', N'4200', N'0', N'3', N'2', N'600', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032016', N'Great Genovese Gloves', N'1', N'0', N'0', N'3', N'2', N'49', N'4200', N'0', N'3', N'2', N'600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032017', N'Great Peltman Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'52', N'4200', N'0', N'3', N'2', N'600', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620032018', N'Improved Natura Chain Gloves', N'1', N'0', N'0', N'3', N'2', N'55', N'4200', N'0', N'3', N'2', N'600', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034001', N'Gritty Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'5', N'4400', N'1', N'3', N'2', N'600', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034002', N'Heavy Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'10', N'4400', N'1', N'3', N'2', N'600', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034003', N'Ultimate Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'15', N'4400', N'1', N'3', N'2', N'600', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034004', N'Brisk Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'20', N'4400', N'1', N'3', N'2', N'600', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034005', N'Bound Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'25', N'4400', N'1', N'3', N'2', N'600', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034006', N'Secure Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034007', N'Devout Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'35', N'4400', N'1', N'3', N'2', N'600', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034008', N'Solid Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'40', N'4400', N'1', N'3', N'2', N'600', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034009', N'Discarded Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'45', N'4400', N'1', N'3', N'2', N'600', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034010', N'Engraved Chain Gloves of Blood', N'1', N'1', N'5', N'3', N'4', N'50', N'4400', N'1', N'3', N'2', N'600', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620034011', N'Improved Cure Chain Gloves', N'1', N'1', N'5', N'3', N'4', N'55', N'4400', N'1', N'3', N'2', N'600', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035001', N'Dense Chain Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'10', N'4600', N'1', N'3', N'2', N'600', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035002', N'Burnished Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035003', N'Ribbed Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035004', N'Arcane Chain Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035005', N'Ashen Chain Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'30', N'4600', N'1', N'3', N'2', N'600', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035006', N'Placidus Chain Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'35', N'4600', N'1', N'3', N'2', N'600', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035007', N'Armadillo Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'40', N'4600', N'1', N'3', N'2', N'600', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035008', N'Bulwark Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'45', N'4600', N'1', N'3', N'2', N'600', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035009', N'Cardiff Chain Gloves of Blood', N'1', N'1', N'3', N'3', N'5', N'50', N'4600', N'1', N'3', N'2', N'600', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035010', N'Improved Armed Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'55', N'4600', N'1', N'3', N'2', N'600', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035102', N'Bloody Pleasure Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'15', N'4600', N'1', N'3', N'2', N'600', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035103', N'Bloody Rebellion Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035104', N'Bloody Velum Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035201', N'Shadow Riberion Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620035202', N'Shadow Velum Chain Gloves', N'1', N'1', N'3', N'3', N'5', N'25', N'4600', N'1', N'3', N'2', N'600', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036001', N'Ecne Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036002', N'Jamel Ducob Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036003', N'Badb Catha Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036004', N'Hinchi Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036005', N'Soul Eater''s Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036006', N'Soul Eater''s Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036101', N'Bloody Ecne Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036102', N'Bloody Jamelducov Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036103', N'Bloody Badhdh Cath Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036104', N'Bloody Hinche Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036105', N'Bloody Soul-Eater Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036106', N'Bloody Silver Tinge Gloves', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036203', N'Shadow Ecne Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036204', N'Shadow Jamel Ducob Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'35', N'5000', N'1', N'3', N'2', N'600', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036205', N'Shadow Babd Catha Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036206', N'Shadow Hinchi Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036207', N'Shadow Soul Eater''s Chain Gloves', N'1', N'1', N'2', N'3', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620036208', N'Shadow Silver Tinge Gloves', N'1', N'1', N'2', N'3', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041001', N'Prelic War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'3', N'4000', N'0', N'0', N'2', N'1100', N'120', N'19')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041002', N'Padded War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'6', N'4000', N'0', N'0', N'2', N'1100', N'270', N'45')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041003', N'Hauberk War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'9', N'4000', N'0', N'0', N'2', N'1100', N'470', N'78')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041004', N'Scale War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'12', N'4000', N'0', N'0', N'2', N'1100', N'700', N'115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041005', N'Steel War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'15', N'4000', N'0', N'0', N'2', N'1100', N'970', N'160')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041006', N'Spiral War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'18', N'4000', N'0', N'0', N'2', N'1100', N'1280', N'211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041007', N'Hoplite Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'21', N'4000', N'0', N'0', N'2', N'1100', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041008', N'Full War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'24', N'4000', N'0', N'0', N'2', N'1100', N'2010', N'332')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041009', N'Ornate War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'27', N'4000', N'0', N'0', N'2', N'1100', N'2430', N'401')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041010', N'Rune War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'30', N'4000', N'0', N'0', N'2', N'1100', N'2900', N'478')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041011', N'Raven War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'33', N'4000', N'0', N'0', N'2', N'1100', N'3390', N'559')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041012', N'Castilian Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'36', N'4000', N'0', N'0', N'2', N'1100', N'3930', N'649')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041013', N'Baleog War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'39', N'4000', N'0', N'0', N'2', N'1100', N'4500', N'742')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041014', N'Drake War Gloves of Blood', N'1', N'0', N'0', N'4', N'1', N'42', N'4000', N'0', N'0', N'2', N'1100', N'5110', N'843')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041015', N'Great Crysis War Gloves', N'1', N'0', N'0', N'4', N'1', N'45', N'4000', N'0', N'0', N'2', N'1100', N'5770', N'952')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041016', N'Great Traviron War Gloves', N'1', N'0', N'0', N'4', N'1', N'48', N'4000', N'0', N'0', N'2', N'1100', N'6460', N'1065')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041017', N'Great Dragoon Gloves', N'1', N'0', N'0', N'4', N'1', N'51', N'4000', N'0', N'0', N'2', N'1100', N'7180', N'1184')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620041018', N'Improved Watcher''s War Gloves', N'1', N'0', N'0', N'4', N'1', N'54', N'4000', N'0', N'0', N'2', N'1100', N'7940', N'1310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042001', N'Prelic War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'4', N'4200', N'0', N'3', N'2', N'1100', N'180', N'29')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042002', N'Padded War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'7', N'4200', N'0', N'3', N'2', N'1100', N'360', N'59')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042003', N'Hauberk War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'10', N'4200', N'0', N'3', N'2', N'1100', N'580', N'95')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042004', N'Scale War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'13', N'4200', N'0', N'3', N'2', N'1100', N'830', N'137')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042005', N'Steel War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'16', N'4200', N'0', N'3', N'2', N'1100', N'1140', N'188')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042006', N'Spiral War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'19', N'4200', N'0', N'3', N'2', N'1100', N'1480', N'244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042007', N'Hoplite Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'22', N'4200', N'0', N'3', N'2', N'1100', N'1860', N'306')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042008', N'Full War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'25', N'4200', N'0', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042009', N'Ornate War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'28', N'4200', N'0', N'3', N'2', N'1100', N'2750', N'454')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042010', N'Rune War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'31', N'4200', N'0', N'3', N'2', N'1100', N'3250', N'536')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042011', N'Raven War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'34', N'4200', N'0', N'3', N'2', N'1100', N'3790', N'625')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042012', N'Castilian Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'37', N'4200', N'0', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042013', N'Baleog War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'40', N'4200', N'0', N'3', N'2', N'1100', N'5000', N'825')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042014', N'Drake War Gloves of Blood', N'1', N'0', N'0', N'4', N'2', N'43', N'4200', N'0', N'3', N'2', N'1100', N'5660', N'933')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042015', N'Great Crysis War Gloves', N'1', N'0', N'0', N'4', N'2', N'46', N'4200', N'0', N'3', N'2', N'1100', N'6370', N'1051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042016', N'Great Traviron War Gloves', N'1', N'0', N'0', N'4', N'2', N'49', N'4200', N'0', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042017', N'Great Dragoon Gloves', N'1', N'0', N'0', N'4', N'2', N'52', N'4200', N'0', N'3', N'2', N'1100', N'7900', N'1303')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620042018', N'Improved Repel War Gloves', N'1', N'0', N'0', N'4', N'2', N'55', N'4200', N'0', N'3', N'2', N'1100', N'8720', N'1439')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044001', N'Shining Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'5', N'4400', N'1', N'3', N'2', N'1100', N'260', N'42')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044002', N'Dazzling Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'10', N'4400', N'1', N'3', N'2', N'1100', N'650', N'107')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044003', N'Assault War Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'15', N'4400', N'1', N'3', N'2', N'1100', N'1150', N'190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044004', N'Gendarme Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'20', N'4400', N'1', N'3', N'2', N'1100', N'1790', N'295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044005', N'Enduring War Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'25', N'4400', N'1', N'3', N'2', N'1100', N'2550', N'421')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044006', N'Jousting Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'30', N'4400', N'1', N'3', N'2', N'1100', N'3440', N'567')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044007', N'Stark Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'35', N'4400', N'1', N'3', N'2', N'1100', N'4450', N'734')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044008', N'Menacing Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'40', N'4400', N'1', N'3', N'2', N'1100', N'5590', N'922')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044009', N'Hazardous War Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'45', N'4400', N'1', N'3', N'2', N'1100', N'6850', N'1130')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044010', N'Expert Gloves of Blood', N'1', N'1', N'5', N'4', N'4', N'50', N'4400', N'1', N'3', N'2', N'1100', N'8240', N'1359')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620044011', N'Improved Suspicious War Gloves', N'1', N'1', N'5', N'4', N'4', N'55', N'4400', N'1', N'3', N'2', N'1100', N'9750', N'1609')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045001', N'Doomed Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'10', N'4600', N'1', N'3', N'2', N'1100', N'680', N'112')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045002', N'Essential War Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'1100', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045003', N'Blazing Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'1100', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045004', N'Infernal War Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'1100', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045005', N'Field Marshal Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'30', N'4600', N'1', N'3', N'2', N'1100', N'3620', N'597')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045006', N'Destined Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'35', N'4600', N'1', N'3', N'2', N'1100', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045007', N'Knightly Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'40', N'4600', N'1', N'3', N'2', N'1100', N'5880', N'970')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045008', N'Fergana War Gloves of Blood', N'1', N'1', N'3', N'4', N'5', N'45', N'4600', N'1', N'3', N'2', N'1100', N'7210', N'1190')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045009', N'Avernus Vambraces of Blood', N'1', N'1', N'3', N'4', N'5', N'50', N'4600', N'1', N'3', N'2', N'1100', N'8670', N'1431')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045010', N'Improved Flame War Gloves', N'1', N'1', N'3', N'4', N'5', N'55', N'4600', N'1', N'3', N'2', N'1100', N'10260', N'1693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045102', N'Bloody Essential War Gloves', N'1', N'1', N'3', N'4', N'5', N'15', N'4600', N'1', N'3', N'2', N'1100', N'1210', N'200')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045103', N'Bloody Blaze War Gloves', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'1100', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045104', N'Bloody Inferna War Gloves', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'1100', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045201', N'Shadow Blaze War Gloves', N'1', N'1', N'3', N'4', N'5', N'20', N'4600', N'1', N'3', N'2', N'1100', N'1880', N'310')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620045202', N'Shadow Infernal War Gloves', N'1', N'1', N'3', N'4', N'5', N'25', N'4600', N'1', N'3', N'2', N'1100', N'2680', N'442')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046001', N'Cruach War Gloves', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'1100', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046002', N'Moyitura War Gloves', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'1100', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046003', N'Forwar War Gloves', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'1100', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046004', N'Banded War Gloves', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'1100', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046005', N'Unbreakable War Gloves', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'1100', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046006', N'Unbreakable War Gloves', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'1100', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046101', N'Bloody Cruaich War Gloves', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'1100', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046102', N'Bloody Moitura War Gloves', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'1100', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046103', N'Bloody For War Gloves', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'1100', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046104', N'Bloody Bandeda War Gloves', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'1100', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046105', N'Bloody Unbreakable War Gloves', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'1100', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046106', N'Bloody Dual Prop Gloves', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'1100', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046203', N'Shadow Cruach War Gloves', N'1', N'1', N'2', N'4', N'6', N'30', N'5000', N'1', N'3', N'2', N'1100', N'3800', N'627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046204', N'Shadow Moyitura War Gloves', N'1', N'1', N'2', N'4', N'6', N'35', N'5000', N'1', N'3', N'2', N'1100', N'4910', N'810')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046205', N'Shadow Forwar War Gloves', N'1', N'1', N'2', N'4', N'6', N'40', N'5000', N'1', N'3', N'2', N'1100', N'6170', N'1018')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046206', N'Shadow Banded War Gloves', N'1', N'1', N'2', N'4', N'6', N'45', N'5000', N'1', N'3', N'2', N'1100', N'7430', N'1226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046207', N'Shadow Unbreakable War Gloves', N'1', N'1', N'2', N'4', N'6', N'50', N'5000', N'1', N'3', N'2', N'1100', N'8690', N'1434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'620046208', N'Shadow Dual Prop Gloves', N'1', N'1', N'2', N'4', N'6', N'55', N'5000', N'1', N'3', N'2', N'1100', N'10770', N'1777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011001', N'Knell Sword', N'1', N'0', N'0', N'5', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011002', N'Mighty Lucas Sword', N'1', N'0', N'0', N'5', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011003', N'Mighty Jeffery Sword', N'1', N'0', N'0', N'5', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011004', N'Dark Shadow Sword', N'1', N'0', N'0', N'5', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011005', N'Dex Aie', N'1', N'0', N'0', N'5', N'1', N'60', N'7000', N'0', N'0', N'1', N'2000', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011006', N'Finest Force Sword', N'1', N'0', N'0', N'5', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711011007', N'Finest Charge Sword', N'1', N'0', N'0', N'5', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012001', N'Knell Sword', N'1', N'0', N'0', N'5', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012002', N'Mighty Lucas Sword', N'1', N'0', N'0', N'5', N'2', N'45', N'7500', N'0', N'3', N'1', N'2000', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012003', N'Mighty Jeffery Sword', N'1', N'0', N'0', N'5', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012004', N'Dark Shadow Sword', N'1', N'0', N'0', N'5', N'2', N'55', N'7500', N'0', N'3', N'1', N'2000', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012005', N'Dex Aie', N'1', N'0', N'0', N'5', N'2', N'60', N'7500', N'0', N'3', N'1', N'2000', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012006', N'Finest Force Sword', N'1', N'0', N'0', N'5', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711012007', N'Finest Charge Sword', N'1', N'0', N'0', N'5', N'2', N'30', N'7500', N'0', N'3', N'1', N'2000', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014001', N'Assassin', N'1', N'1', N'5', N'5', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014002', N'Desperata Ferro', N'1', N'1', N'5', N'5', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014003', N'Arago', N'1', N'1', N'5', N'5', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014004', N'Bij Mordu', N'1', N'1', N'5', N'5', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014005', N'Hell Hound', N'1', N'1', N'5', N'5', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014006', N'Finest Cursed Unholy Sword', N'1', N'1', N'5', N'5', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711014007', N'Finest Curtis Doom Blinger', N'1', N'1', N'5', N'5', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015001', N'Anathema', N'1', N'1', N'3', N'5', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015002', N'Caliburn', N'1', N'1', N'3', N'5', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015003', N'Tyrfing', N'1', N'1', N'3', N'5', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015004', N'Best Dark Stream', N'1', N'1', N'3', N'5', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015005', N'Mithriltain Sword', N'1', N'1', N'3', N'5', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015006', N'Snare', N'1', N'1', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015007', N'Nabiu', N'1', N'1', N'3', N'5', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711015306', N'Finest Garnet Sword', N'1', N'2', N'3', N'5', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016001', N'Hell Scream: Sword', N'1', N'2', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016002', N'Full Moon: Sword', N'1', N'2', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016003', N'Soul Catar: Sword', N'1', N'2', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016004', N'Turvatio: Sword', N'1', N'2', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016005', N'Mortalis: Sword', N'1', N'2', N'2', N'5', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016007', N'Sabat: Sword', N'1', N'2', N'2', N'5', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016101', N'Divine Scream: Sword', N'1', N'2', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016102', N'New Moon: Sword', N'1', N'2', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016103', N'Soul Catalyst: Mutant Sword', N'1', N'2', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016104', N'Turbatio: Mutant Sword', N'1', N'2', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016107', N'Sabat: The Other Sword', N'1', N'2', N'2', N'5', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016203', N'Soul Catalyst: the Other Sword', N'1', N'2', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016204', N'Turbatio: ''The Other'' Sword', N'1', N'2', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016301', N'Finest Agate Sword', N'1', N'2', N'2', N'5', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016302', N'Finest Lapis Lazuli Sword', N'1', N'2', N'2', N'5', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016303', N'Finest Aquamarine Sword', N'1', N'2', N'2', N'5', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016304', N'Finest Inca Rose Sword', N'1', N'2', N'2', N'5', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711016307', N'Finest Carnelian Sword', N'1', N'2', N'2', N'5', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021001', N'Mort Axe', N'1', N'0', N'0', N'6', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021002', N'Nomi-Slayer', N'1', N'0', N'0', N'6', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021003', N'Metal Slayer', N'1', N'0', N'0', N'6', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021004', N'Guilty Slayer', N'1', N'0', N'0', N'6', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021005', N'Slayer Rule Axe', N'1', N'0', N'0', N'6', N'1', N'60', N'7000', N'0', N'0', N'1', N'2200', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021006', N'Premium Steel Axe', N'1', N'0', N'0', N'6', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711021007', N'Premium Locaber Axe', N'1', N'0', N'0', N'6', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022001', N'Mort Axe', N'1', N'0', N'0', N'6', N'2', N'40', N'7500', N'0', N'3', N'1', N'2200', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022002', N'Nomi-Slayer', N'1', N'0', N'0', N'6', N'2', N'45', N'7500', N'0', N'3', N'1', N'2200', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022003', N'Metal Slayer', N'1', N'0', N'0', N'6', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022004', N'Guilty Slayer', N'1', N'0', N'0', N'6', N'2', N'55', N'7500', N'0', N'3', N'1', N'2200', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022005', N'Slayer Rule Axe', N'1', N'0', N'0', N'6', N'2', N'60', N'7500', N'0', N'3', N'1', N'2200', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022006', N'Premium Steel Axe', N'1', N'0', N'0', N'6', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711022007', N'Premium Locaber Axe', N'1', N'0', N'0', N'6', N'2', N'30', N'7500', N'0', N'3', N'1', N'2200', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024001', N'Malison', N'1', N'1', N'5', N'6', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024002', N'Chokuto Slayer', N'1', N'1', N'5', N'6', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024003', N'Precise Tachi', N'1', N'1', N'5', N'6', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024004', N'Destruction', N'1', N'1', N'5', N'6', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024005', N'Damascus Axe', N'1', N'1', N'5', N'6', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024006', N'Finest Cursed Stigma Slayer', N'1', N'1', N'5', N'6', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711024007', N'Finest Curtis Doom Slayer', N'1', N'1', N'5', N'6', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025001', N'Bone Cracker', N'1', N'1', N'3', N'6', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025002', N'Axe of Question', N'1', N'1', N'3', N'6', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025003', N'The Grand Cross', N'1', N'1', N'3', N'6', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025004', N'Axe of Acquisition', N'1', N'1', N'3', N'6', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025005', N'Le''Tia Mast Mmu', N'1', N'1', N'3', N'6', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025006', N'Former Canis', N'1', N'1', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025007', N'Grantis', N'1', N'1', N'3', N'6', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711025306', N'Finest Garnet Axe', N'1', N'2', N'3', N'6', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026001', N'Hell Scream: Axe', N'1', N'2', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026002', N'Full Moon: Axe', N'1', N'2', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026003', N'Soul Catar: Axe', N'1', N'2', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026004', N'Turvatio: Axe', N'1', N'2', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026005', N'Mortalis: Axe', N'1', N'2', N'2', N'6', N'6', N'60', N'10000', N'1', N'3', N'1', N'2200', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026007', N'Sabat: Axe', N'1', N'2', N'2', N'6', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026101', N'Divine Scream: Axe', N'1', N'2', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026102', N'New Moon: Axe', N'1', N'2', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026103', N'Soul Catalyst: Mutant Axe', N'1', N'2', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026104', N'Turbatio: Mutant Axe', N'1', N'2', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026107', N'Sabat: The Other Axe', N'1', N'2', N'2', N'6', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026203', N'Soul Catalyst: the Other Axe', N'1', N'2', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026204', N'Turbatio: ''The Other'' Axe', N'1', N'2', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026301', N'Finest Agate Axe', N'1', N'2', N'2', N'6', N'6', N'40', N'10000', N'1', N'3', N'1', N'2200', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026302', N'Finest Lapis Lazuli Axe', N'1', N'2', N'2', N'6', N'6', N'45', N'10000', N'1', N'3', N'1', N'2200', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026303', N'Finest Aquamarine Axe', N'1', N'2', N'2', N'6', N'6', N'50', N'10000', N'1', N'3', N'1', N'2200', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026304', N'Finest Inca Rose Axe', N'1', N'2', N'2', N'6', N'6', N'55', N'10000', N'1', N'3', N'1', N'2200', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711026307', N'Finest Carnelian Axe', N'1', N'2', N'2', N'6', N'6', N'30', N'10000', N'1', N'3', N'1', N'2200', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031001', N'Astral Edge', N'1', N'0', N'0', N'7', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031002', N'Obsidian Magic Sword', N'1', N'0', N'0', N'7', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031003', N'Negotiator', N'1', N'0', N'0', N'7', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031004', N'Ambassador', N'1', N'0', N'0', N'7', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031005', N'Chrysaor', N'1', N'0', N'0', N'7', N'1', N'60', N'7000', N'0', N'0', N'1', N'2500', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031006', N'Finest Forest Spell Sword', N'1', N'0', N'0', N'7', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711031007', N'Supreme War Spell Sword', N'1', N'0', N'0', N'7', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032001', N'Astral Edge', N'1', N'0', N'0', N'7', N'2', N'40', N'7500', N'0', N'3', N'1', N'2500', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032002', N'Obsidian Magic Sword', N'1', N'0', N'0', N'7', N'2', N'45', N'7500', N'0', N'3', N'1', N'2500', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032003', N'Negotiator', N'1', N'0', N'0', N'7', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032004', N'Ambassador', N'1', N'0', N'0', N'7', N'2', N'55', N'7500', N'0', N'3', N'1', N'2500', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032005', N'Chrysaor', N'1', N'0', N'0', N'7', N'2', N'60', N'7500', N'0', N'3', N'1', N'2500', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032006', N'Finest Forest Spell Sword', N'1', N'0', N'0', N'7', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711032007', N'Supreme War Spell Sword', N'1', N'0', N'0', N'7', N'2', N'30', N'7500', N'0', N'3', N'1', N'2500', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034001', N'Clash', N'1', N'1', N'5', N'7', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034002', N'Yanluo''s Sword', N'1', N'1', N'5', N'7', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034003', N'Izanami''s Gift', N'1', N'1', N'5', N'7', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034004', N'Memitim', N'1', N'1', N'5', N'7', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034005', N'Metal Plague', N'1', N'1', N'5', N'7', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034006', N'Finest Cursed Spell Sword', N'1', N'1', N'5', N'7', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711034007', N'Finest Curtis Doom Magic Sword', N'1', N'1', N'5', N'7', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035001', N'Eradicator', N'1', N'1', N'3', N'7', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035002', N'Grimalkin''s Token', N'1', N'1', N'3', N'7', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035003', N'Long Division', N'1', N'1', N'3', N'7', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035004', N'Beauty''s Smile', N'1', N'1', N'3', N'7', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035005', N'Crimson Rain', N'1', N'1', N'3', N'7', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035006', N'Pendulum', N'1', N'1', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035007', N'Bewildered', N'1', N'1', N'3', N'7', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711035306', N'Finest Garnet Magic Sword', N'1', N'2', N'3', N'7', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036001', N'Hell Scream: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036002', N'Full Moon: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036003', N'Soul Catar: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036004', N'Turvatio: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036005', N'Mortalis: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036007', N'Sabat: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036101', N'Divine Scream: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036102', N'New Moon: Magic Sword', N'1', N'2', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036103', N'Soul Catalyst: Mutant Magic Sword', N'1', N'2', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036104', N'Turbatio: Mutant Magic Sword', N'1', N'2', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036107', N'Sabat: The Other Magic Sword', N'1', N'2', N'2', N'7', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036203', N'Soul Catalyst: the Other Magic Sword', N'1', N'2', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036204', N'Turbatio: ''The Other'' Magic Sword', N'1', N'2', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036301', N'Finest Agate Magic Sword', N'1', N'2', N'2', N'7', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036302', N'Finest Lapis Lazuli Magic Sword', N'1', N'2', N'2', N'7', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036303', N'Finest Aquamarine Magic Sword', N'1', N'2', N'2', N'7', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036304', N'Finest Inca Rose Magic Sword', N'1', N'2', N'2', N'7', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711036307', N'Finest Carnelian Magic Sword', N'1', N'2', N'2', N'7', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041001', N'Luminous Scythe', N'1', N'0', N'0', N'8', N'1', N'40', N'7000', N'0', N'0', N'1', N'2600', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041002', N'Intellect Substitute', N'1', N'0', N'0', N'8', N'1', N'45', N'7000', N'0', N'0', N'1', N'2600', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041003', N'Metal Courage', N'1', N'0', N'0', N'8', N'1', N'50', N'7000', N'0', N'0', N'1', N'2600', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041004', N'Iron Will', N'1', N'0', N'0', N'8', N'1', N'55', N'7000', N'0', N'0', N'1', N'2600', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041005', N'Accelerated Inheritance', N'1', N'0', N'0', N'8', N'1', N'60', N'7000', N'0', N'0', N'1', N'2600', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041006', N'Advanced Witch Scythe', N'1', N'0', N'0', N'8', N'1', N'20', N'7000', N'0', N'0', N'1', N'2600', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711041007', N'Finest Lugsais', N'1', N'0', N'0', N'8', N'1', N'30', N'7000', N'0', N'0', N'1', N'2600', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042001', N'Luminous Scythe', N'1', N'0', N'0', N'8', N'2', N'40', N'7500', N'0', N'3', N'1', N'2600', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042002', N'Intellect Substitute', N'1', N'0', N'0', N'8', N'2', N'45', N'7500', N'0', N'3', N'1', N'2600', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042003', N'Metal Courage', N'1', N'0', N'0', N'8', N'2', N'50', N'7500', N'0', N'3', N'1', N'2600', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042004', N'Iron Will', N'1', N'0', N'0', N'8', N'2', N'55', N'7500', N'0', N'3', N'1', N'2600', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042005', N'Accelerated Inheritance', N'1', N'0', N'0', N'8', N'2', N'60', N'7500', N'0', N'3', N'1', N'2600', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042006', N'Finest Witch Scythe', N'1', N'0', N'0', N'8', N'2', N'20', N'7500', N'0', N'3', N'1', N'2600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711042007', N'Finest Lugsais', N'1', N'0', N'0', N'8', N'2', N'30', N'7500', N'0', N'3', N'1', N'2600', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044001', N'Schism', N'1', N'1', N'5', N'8', N'4', N'40', N'8000', N'1', N'3', N'1', N'2600', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044002', N'Uprising', N'1', N'1', N'5', N'8', N'4', N'45', N'8000', N'1', N'3', N'1', N'2600', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044003', N'Hasty Tranquility', N'1', N'1', N'5', N'8', N'4', N'50', N'8000', N'1', N'3', N'1', N'2600', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044004', N'Rain-Maker', N'1', N'1', N'5', N'8', N'4', N'55', N'8000', N'1', N'3', N'1', N'2600', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044005', N'Dreadful Judgment', N'1', N'1', N'5', N'8', N'4', N'60', N'8000', N'1', N'3', N'1', N'2600', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044006', N'Finest Cursed Witch Scythe', N'1', N'1', N'5', N'8', N'4', N'20', N'8000', N'1', N'3', N'1', N'2600', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711044007', N'Finest Curtis Doom Scythe', N'1', N'1', N'5', N'8', N'4', N'30', N'8000', N'1', N'3', N'1', N'2600', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045001', N'Fracture', N'1', N'1', N'3', N'8', N'5', N'40', N'9000', N'1', N'3', N'1', N'2600', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045002', N'Badhbh Cath', N'1', N'1', N'3', N'8', N'5', N'45', N'9000', N'1', N'3', N'1', N'2600', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045003', N'Effective Communicator', N'1', N'1', N'3', N'8', N'5', N'50', N'9000', N'1', N'3', N'1', N'2600', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045004', N'Shredder', N'1', N'1', N'3', N'8', N'5', N'55', N'9000', N'1', N'3', N'1', N'2600', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045005', N'Dark Nightmare', N'1', N'1', N'3', N'8', N'5', N'60', N'9000', N'1', N'3', N'1', N'2600', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045006', N'Alhena', N'1', N'1', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045007', N'Canine Teeth', N'1', N'1', N'3', N'8', N'5', N'30', N'9000', N'1', N'3', N'1', N'2600', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711045306', N'Finest Garnet Scythe', N'1', N'2', N'3', N'8', N'5', N'20', N'9000', N'1', N'3', N'1', N'2600', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046001', N'Hell Scream: Scythe', N'1', N'2', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046002', N'Full Moon: Scythe', N'1', N'2', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046003', N'Soul Catar: Scythe', N'1', N'2', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046004', N'Turvatio: Scythe', N'1', N'2', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046005', N'Mortalis: Scythe', N'1', N'2', N'2', N'8', N'6', N'60', N'10000', N'1', N'3', N'1', N'2600', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046007', N'Sabat: Scythe', N'1', N'2', N'2', N'8', N'6', N'30', N'10000', N'1', N'3', N'1', N'2600', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046101', N'Divine Scream: Scythe', N'1', N'2', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046102', N'New Moon: Scythe', N'1', N'2', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046103', N'Soul Catalyst: Mutant Scythe', N'1', N'2', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046104', N'Turbatio: Mutant Scythe', N'1', N'2', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046107', N'Sabat: The Other Scythe', N'1', N'2', N'2', N'8', N'6', N'30', N'10000', N'1', N'3', N'1', N'2600', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046203', N'Soul Catalyst: the Other Scythe', N'1', N'2', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046204', N'Turbatio: ''The Other'' Scythe', N'1', N'2', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046301', N'Finest Agate Scythe', N'1', N'2', N'2', N'8', N'6', N'40', N'10000', N'1', N'3', N'1', N'2600', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046302', N'Finest Lapis Lazuli Scythe', N'1', N'2', N'2', N'8', N'6', N'45', N'10000', N'1', N'3', N'1', N'2600', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046303', N'Finest Aquamarine Scythe', N'1', N'2', N'2', N'8', N'6', N'50', N'10000', N'1', N'3', N'1', N'2600', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046304', N'Finest Inca Rose Scythe', N'1', N'2', N'2', N'8', N'6', N'55', N'10000', N'1', N'3', N'1', N'2600', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711046307', N'Finest Carnelian Scythe', N'1', N'2', N'2', N'8', N'6', N'30', N'10000', N'1', N'3', N'1', N'2600', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051001', N'Brute Gauntlet', N'1', N'0', N'0', N'9', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051002', N'Combat Gauntlet', N'1', N'0', N'0', N'9', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051003', N'Knight Gauntlet', N'1', N'0', N'0', N'9', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051004', N'Havoc Gauntlet', N'1', N'0', N'0', N'9', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051005', N'Gestalt Gauntlet', N'1', N'0', N'0', N'9', N'1', N'60', N'7000', N'0', N'0', N'1', N'2300', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051006', N'Finest Chain Gauntlet', N'1', N'0', N'0', N'9', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711051007', N'Highest Grade Combat Gauntlet', N'1', N'0', N'0', N'9', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052001', N'Brute Gauntlet', N'1', N'0', N'0', N'9', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052002', N'Combat Gauntlet', N'1', N'0', N'0', N'9', N'2', N'45', N'7500', N'0', N'3', N'1', N'2300', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052003', N'Knight Gauntlet', N'1', N'0', N'0', N'9', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052004', N'Havoc Gauntlet', N'1', N'0', N'0', N'9', N'2', N'55', N'7500', N'0', N'3', N'1', N'2300', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052005', N'Gestalt Gauntlet', N'1', N'0', N'0', N'9', N'2', N'60', N'7500', N'0', N'3', N'1', N'2300', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052006', N'Finest Chain Gauntlet', N'1', N'0', N'0', N'9', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711052007', N'Highest Grade Combat Gauntlet', N'1', N'0', N'0', N'9', N'2', N'30', N'7500', N'0', N'3', N'1', N'2300', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054001', N'Crusher', N'1', N'1', N'5', N'9', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054002', N'Spirit Keeper', N'1', N'1', N'5', N'9', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054003', N'Myzer', N'1', N'1', N'5', N'9', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054004', N'Hammer Lich', N'1', N'1', N'5', N'9', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054005', N'Nekote', N'1', N'1', N'5', N'9', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054006', N'Finest Cursed War Gauntlet', N'1', N'1', N'5', N'9', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711054007', N'Finest Curtis Doom Gauntlet', N'1', N'1', N'5', N'9', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055001', N'Splitter', N'1', N'1', N'3', N'9', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055002', N'Skadi', N'1', N'1', N'3', N'9', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055003', N'Best Efreet', N'1', N'1', N'3', N'9', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055004', N'Nezhad', N'1', N'1', N'3', N'9', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055005', N'Wolf Buster', N'1', N'1', N'3', N'9', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055006', N'Duvet', N'1', N'1', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055007', N'Beth-Surbent', N'1', N'1', N'3', N'9', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711055306', N'Finest Garnet Gauntlet', N'1', N'2', N'3', N'9', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056001', N'Hell Scream: Gauntlet', N'1', N'2', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056002', N'Full Moon: Gauntlet', N'1', N'2', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056003', N'Soul Catar: Gauntlets', N'1', N'2', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056004', N'Turvatio: Gauntlets', N'1', N'2', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056005', N'Mortalis: Gauntlets', N'1', N'2', N'2', N'9', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056007', N'Sabat: Gauntlet', N'1', N'2', N'2', N'9', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056101', N'Divine Scream: Gauntlet', N'1', N'2', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056102', N'New Moon: Gauntlet', N'1', N'2', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056103', N'Soul Catalyst: Mutant Gauntlets', N'1', N'2', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056104', N'Turbatio: Mutant Gauntlets', N'1', N'2', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056107', N'Sabat: The Other Gauntlet', N'1', N'2', N'2', N'9', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056203', N'Soul Catalyst: the Other Gauntlets', N'1', N'2', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056204', N'Turbatio: ''The Other'' Gauntlets', N'1', N'2', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056301', N'Finest Agate Gauntlet', N'1', N'2', N'2', N'9', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056302', N'Finest Lapis Lazuli Gauntlet', N'1', N'2', N'2', N'9', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056303', N'Finest Aquamarine Gauntlet', N'1', N'2', N'2', N'9', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056304', N'Finest Inca Rose Gauntlet', N'1', N'2', N'2', N'9', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711056307', N'Finest Carnelian Gauntlet', N'1', N'2', N'2', N'9', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061001', N'Sharp Claw', N'1', N'0', N'0', N'10', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061002', N'Blade Claw', N'1', N'0', N'0', N'10', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061003', N'Chaser', N'1', N'0', N'0', N'10', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061004', N'Zephyr Claw', N'1', N'0', N'0', N'10', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061005', N'Demonic Claw', N'1', N'0', N'0', N'10', N'1', N'60', N'7000', N'0', N'0', N'1', N'2000', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061006', N'Finest War Claw', N'1', N'0', N'0', N'10', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711061007', N'Finest Fatal Claw', N'1', N'0', N'0', N'10', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062001', N'Sharp Claw', N'1', N'0', N'0', N'10', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062002', N'Blade Claw', N'1', N'0', N'0', N'10', N'2', N'45', N'7500', N'0', N'3', N'1', N'2000', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062003', N'Chaser', N'1', N'0', N'0', N'10', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062004', N'Zephyr Claw', N'1', N'0', N'0', N'10', N'2', N'55', N'7500', N'0', N'3', N'1', N'2000', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062005', N'Demonic Claw', N'1', N'0', N'0', N'10', N'2', N'60', N'7500', N'0', N'3', N'1', N'2000', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062006', N'Finest War Claw', N'1', N'0', N'0', N'10', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711062007', N'Finest Fatal Claw', N'1', N'0', N'0', N'10', N'2', N'30', N'7500', N'0', N'3', N'1', N'2000', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064001', N'Demolisher', N'1', N'1', N'5', N'10', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064002', N'Tempest', N'1', N'1', N'5', N'10', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064003', N'Storm Chaser', N'1', N'1', N'5', N'10', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064004', N'Azure Zephyr', N'1', N'1', N'5', N'10', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064005', N'Beholder Claw', N'1', N'1', N'5', N'10', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064006', N'Finest Cursed War Claw', N'1', N'1', N'5', N'10', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711064007', N'Finest Curtis Doom Claw', N'1', N'1', N'5', N'10', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065001', N'Destroyer', N'1', N'1', N'3', N'10', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065002', N'Emerald Cutter', N'1', N'1', N'3', N'10', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065003', N'Sorcerer Slasher', N'1', N'1', N'3', N'10', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065004', N'Raider''s Claw', N'1', N'1', N'3', N'10', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065005', N'Devilarm', N'1', N'1', N'3', N'10', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065006', N'Kabut', N'1', N'1', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065007', N'Shadow Killer', N'1', N'1', N'3', N'10', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711065306', N'Finest Garnet Claw', N'1', N'2', N'3', N'10', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066001', N'Hell Scream: Claw', N'1', N'2', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066002', N'Full Moon: Claw', N'1', N'2', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066003', N'Soul Catar: Claw', N'1', N'2', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066004', N'Turvatio: Claw', N'1', N'2', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066005', N'Mortalis: Claw', N'1', N'2', N'2', N'10', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066007', N'Sabat: Claw', N'1', N'2', N'2', N'10', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066101', N'Divine Scream: Claw', N'1', N'2', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066102', N'New Moon: Claw', N'1', N'2', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066103', N'Soul Catalyst: Mutant Claw', N'1', N'2', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066104', N'Turbatio: Mutant Claw', N'1', N'2', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066107', N'Sabat: The Other Claw', N'1', N'2', N'2', N'10', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066203', N'Soul Catalyst: the Other Claw', N'1', N'2', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066204', N'Turbatio: ''The Other'' Claw', N'1', N'2', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066301', N'Finest Agate Claw', N'1', N'2', N'2', N'10', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066302', N'Finest Lapis Lazuli Claw', N'1', N'2', N'2', N'10', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066303', N'Finest Aquamarine Claw', N'1', N'2', N'2', N'10', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066304', N'Finest Inca Rose Claw', N'1', N'2', N'2', N'10', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711066307', N'Finest Carnelian Claw', N'1', N'2', N'2', N'10', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071001', N'Fiery Revolver', N'1', N'0', N'0', N'11', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071002', N'Mistral Revolver', N'1', N'0', N'0', N'11', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071003', N'Primal Revolver', N'1', N'0', N'0', N'11', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071004', N'Komodo Pistol', N'1', N'0', N'0', N'11', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071005', N'Silent Snake', N'1', N'0', N'0', N'11', N'1', N'60', N'7000', N'0', N'0', N'1', N'2000', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071006', N'Finest Sting Revolver', N'1', N'0', N'0', N'11', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711071007', N'Finest Gaussian Revolver', N'1', N'0', N'0', N'11', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072001', N'Fiery Revolver', N'1', N'0', N'0', N'11', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072002', N'Mistral Revolver', N'1', N'0', N'0', N'11', N'2', N'45', N'7500', N'0', N'3', N'1', N'2000', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072003', N'Primal Revolver', N'1', N'0', N'0', N'11', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072004', N'Komodo Pistol', N'1', N'0', N'0', N'11', N'2', N'55', N'7500', N'0', N'3', N'1', N'2000', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072005', N'Silent Snake', N'1', N'0', N'0', N'11', N'2', N'60', N'7500', N'0', N'3', N'1', N'2000', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072006', N'Finest Sting Revolver', N'1', N'0', N'0', N'11', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711072007', N'Finest Gaussian Revolver', N'1', N'0', N'0', N'11', N'2', N'30', N'7500', N'0', N'3', N'1', N'2000', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074001', N'Burster', N'1', N'1', N'5', N'11', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074002', N'Renovator', N'1', N'1', N'5', N'11', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074003', N'Igniter', N'1', N'1', N'5', N'11', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074004', N'Wes-MK16', N'1', N'1', N'5', N'11', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074005', N'Wes-MK32', N'1', N'1', N'5', N'11', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074006', N'Finest Steady Border', N'1', N'1', N'5', N'11', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711074007', N'Finest Finest Rage', N'1', N'1', N'5', N'11', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075001', N'Lightning', N'1', N'1', N'3', N'11', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075002', N'S-Rank Renovator', N'1', N'1', N'3', N'11', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075003', N'S-Rank Igniter', N'1', N'1', N'3', N'11', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075004', N'Chrome Trigger', N'1', N'1', N'3', N'11', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075005', N'Viridian-MK5', N'1', N'1', N'3', N'11', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075006', N'Sharp Shooter', N'1', N'1', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075007', N'Salamander', N'1', N'1', N'3', N'11', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711075306', N'Finest Garnet Revolver', N'1', N'2', N'3', N'11', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076001', N'Hell Scream: Revolver', N'1', N'2', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076002', N'Full Moon: Revolver', N'1', N'2', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076003', N'Soul Catar: Revolver', N'1', N'2', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076004', N'Turvatio: Revolver', N'1', N'2', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076005', N'Mortalis: Revolver', N'1', N'2', N'2', N'11', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076007', N'Sabat: Revolver', N'1', N'2', N'2', N'11', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076101', N'Divine Scream: Revolver', N'1', N'2', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076102', N'New Moon: Revolver', N'1', N'2', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076103', N'Soul Catalyst: Mutant Revolver', N'1', N'2', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076104', N'Turbatio: Mutant Revolver', N'1', N'2', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076107', N'Sabat: The Other Revolver', N'1', N'2', N'2', N'11', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076203', N'Soul Catalyst: the Other Revolver', N'1', N'2', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076204', N'Turbatio: ''The Other'' Revolver', N'1', N'2', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076301', N'Finest Agate Revolver', N'1', N'2', N'2', N'11', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076302', N'Finest Lapis Lazuli Revolver', N'1', N'2', N'2', N'11', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076303', N'Finest Aquamarine Revolver', N'1', N'2', N'2', N'11', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076304', N'Finest Inca Rose Revolver', N'1', N'2', N'2', N'11', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711076307', N'Finest Carnelian Revolver', N'1', N'2', N'2', N'11', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081001', N'Frenzied Musket', N'1', N'0', N'0', N'12', N'1', N'40', N'7000', N'0', N'0', N'1', N'2200', N'12820', N'2115')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081002', N'Spes Musket', N'1', N'0', N'0', N'12', N'1', N'45', N'7000', N'0', N'0', N'1', N'2200', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081003', N'Gauss Rifle', N'1', N'0', N'0', N'12', N'1', N'50', N'7000', N'0', N'0', N'1', N'2200', N'18910', N'3120')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081004', N'Double Barrel', N'1', N'0', N'0', N'12', N'1', N'55', N'7000', N'0', N'0', N'1', N'2200', N'22380', N'3692')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081005', N'Impacter', N'1', N'0', N'0', N'12', N'1', N'60', N'7000', N'0', N'0', N'1', N'2200', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081006', N'Finest Lower Musket', N'1', N'0', N'0', N'12', N'1', N'20', N'7000', N'0', N'0', N'1', N'2200', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711081007', N'Finest Wild Musket', N'1', N'0', N'0', N'12', N'1', N'30', N'7000', N'0', N'0', N'1', N'2200', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082001', N'Frenzied Musket', N'1', N'0', N'0', N'12', N'2', N'40', N'7500', N'0', N'3', N'1', N'2200', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082002', N'Spes Musket', N'1', N'0', N'0', N'12', N'2', N'45', N'7500', N'0', N'3', N'1', N'2200', N'16710', N'2757')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082003', N'Gauss Rifle', N'1', N'0', N'0', N'12', N'2', N'50', N'7500', N'0', N'3', N'1', N'2200', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082004', N'Double Barrel', N'1', N'0', N'0', N'12', N'2', N'55', N'7500', N'0', N'3', N'1', N'2200', N'23780', N'3923')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082005', N'Impacter', N'1', N'0', N'0', N'12', N'2', N'60', N'7500', N'0', N'3', N'1', N'2200', N'27790', N'4585')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082006', N'Finest Lower Musket', N'1', N'0', N'0', N'12', N'2', N'20', N'7500', N'0', N'3', N'1', N'2200', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711082007', N'Finest Wild Musket', N'1', N'0', N'0', N'12', N'2', N'30', N'7500', N'0', N'3', N'1', N'2200', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084001', N'Storm', N'1', N'1', N'5', N'12', N'4', N'40', N'8000', N'1', N'3', N'1', N'2200', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084002', N'Vult Musket', N'1', N'1', N'5', N'12', N'4', N'45', N'8000', N'1', N'3', N'1', N'2200', N'18680', N'3082')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084003', N'Assassin''s Rifle', N'1', N'1', N'5', N'12', N'4', N'50', N'8000', N'1', N'3', N'1', N'2200', N'22460', N'3705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084004', N'Punisher', N'1', N'1', N'5', N'12', N'4', N'55', N'8000', N'1', N'3', N'1', N'2200', N'26580', N'4385')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084005', N'Justice', N'1', N'1', N'5', N'12', N'4', N'60', N'8000', N'1', N'3', N'1', N'2200', N'31060', N'5124')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084006', N'Finest Double Barrel', N'1', N'1', N'5', N'12', N'4', N'20', N'8000', N'1', N'3', N'1', N'2200', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711084007', N'Finest Benelli', N'1', N'1', N'5', N'12', N'4', N'30', N'8000', N'1', N'3', N'1', N'2200', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085001', N'Thunder', N'1', N'1', N'3', N'12', N'5', N'40', N'9000', N'1', N'3', N'1', N'2200', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085002', N'Bloody Rose', N'1', N'1', N'3', N'12', N'5', N'45', N'9000', N'1', N'3', N'1', N'2200', N'19660', N'3243')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085003', N'Tracer', N'1', N'1', N'3', N'12', N'5', N'50', N'9000', N'1', N'3', N'1', N'2200', N'23640', N'3900')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085004', N'Twin Eagle', N'1', N'1', N'3', N'12', N'5', N'55', N'9000', N'1', N'3', N'1', N'2200', N'27980', N'4616')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085005', N'Justice', N'1', N'1', N'3', N'12', N'5', N'60', N'9000', N'1', N'3', N'1', N'2200', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085006', N'Sonic Boom', N'1', N'1', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085007', N'Ribret', N'1', N'1', N'3', N'12', N'5', N'30', N'9000', N'1', N'3', N'1', N'2200', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711085306', N'Finest Garnet Musket', N'1', N'2', N'3', N'12', N'5', N'20', N'9000', N'1', N'3', N'1', N'2200', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086001', N'Hell Scream: Musket', N'1', N'2', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086002', N'Full Moon: Musket', N'1', N'2', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086003', N'Soul Catar: Musket', N'1', N'2', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086004', N'Turvatio: Musket', N'1', N'2', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086005', N'Mortalis: Musket', N'1', N'2', N'2', N'12', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5662')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086007', N'Sabat: Musket', N'1', N'2', N'2', N'12', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086101', N'Divine Scream: Musket', N'1', N'2', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086102', N'New Moon: Musket', N'1', N'2', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086103', N'Soul Catalyst: Mutant Musket', N'1', N'2', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086104', N'Turbatio: Mutant Musket', N'1', N'2', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086107', N'Sabat: The Other Musket', N'1', N'2', N'2', N'12', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086203', N'Soul Catalyst: the Other Musket', N'1', N'2', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086204', N'Turbatio: ''The Other'' Musket', N'1', N'2', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086301', N'Finest Agate Musket', N'1', N'2', N'2', N'12', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086302', N'Finest Lapis Lazuli Musket', N'1', N'2', N'2', N'12', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3405')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086303', N'Finest Aquamarine Musket', N'1', N'2', N'2', N'12', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4095')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086304', N'Finest Inca Rose Musket', N'1', N'2', N'2', N'12', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711086307', N'Finest Carnelian Musket', N'1', N'2', N'2', N'12', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091001', N'Gemina', N'1', N'0', N'0', N'55', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091002', N'Bis Gladii', N'1', N'0', N'0', N'55', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091003', N'Revenger''s Duo', N'1', N'0', N'0', N'55', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091004', N'Geminos Cultros', N'1', N'0', N'0', N'55', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091005', N'Didymus Gladius', N'1', N'0', N'0', N'55', N'1', N'60', N'7000', N'0', N'0', N'1', N'2000', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091006', N'Finest Identity Twin Swords', N'1', N'0', N'0', N'55', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711091007', N'Finest Crucial Twin Swords', N'1', N'0', N'0', N'55', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092001', N'Gemina', N'1', N'0', N'0', N'55', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092002', N'Bis Gladii', N'1', N'0', N'0', N'55', N'2', N'45', N'7500', N'0', N'3', N'1', N'2000', N'16710', N'2758')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092003', N'Revenger''s Duo', N'1', N'0', N'0', N'55', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092004', N'Geminos Cultros', N'1', N'0', N'0', N'55', N'2', N'55', N'7500', N'0', N'3', N'1', N'2000', N'23780', N'3924')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092005', N'Didymus Gladius', N'1', N'0', N'0', N'55', N'2', N'60', N'7500', N'0', N'3', N'1', N'2000', N'27790', N'4586')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092006', N'Finest Identity Twin Swords', N'1', N'0', N'0', N'55', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711092007', N'Finest Crucial Twin Sword', N'1', N'0', N'0', N'55', N'2', N'30', N'7500', N'0', N'3', N'1', N'2000', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094001', N'Exalted Kapainus ', N'1', N'1', N'5', N'55', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094002', N'Exalted Vitis', N'1', N'1', N'5', N'55', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094003', N'Exalted Ribeth', N'1', N'1', N'5', N'55', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094004', N'Twin Swords of Duke', N'1', N'1', N'5', N'55', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094005', N'Twin Swords of Duke', N'1', N'1', N'5', N'55', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'31060', N'5125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094006', N'Finest Lex', N'1', N'1', N'5', N'55', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711094007', N'Finest Betula', N'1', N'1', N'5', N'55', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095001', N'Exalted Kornus', N'1', N'1', N'3', N'55', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095002', N'Exalted Paderia', N'1', N'1', N'3', N'55', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095003', N'Exalted Acer', N'1', N'1', N'3', N'55', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095004', N'Custom Joheim''s Twin Swords', N'1', N'1', N'3', N'55', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095005', N'Custom Joheim''s Twin Swords', N'1', N'1', N'3', N'55', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095006', N'Castanus', N'1', N'1', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095007', N'Unimus', N'1', N'1', N'3', N'55', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711095306', N'Finest Garnet Magic Sword', N'1', N'2', N'3', N'55', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096001', N'Hell Scream: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096002', N'Full Moon: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096003', N'Soul Catar: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096004', N'Turvatio: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096005', N'Mortalis: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'60', N'10000', N'1', N'3', N'1', N'2000', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096007', N'Sabat: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096101', N'Divine Scream: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096102', N'New Moon: Twin Swords', N'1', N'2', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096103', N'Soul Catalyst: Mutant Twin Swords', N'1', N'2', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096104', N'Turbatio: Mutant Twin Swords', N'1', N'2', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096107', N'Sabat: The Other Twin Swords', N'1', N'2', N'2', N'55', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096203', N'Soul Catalyst: the Other Twin Swords', N'1', N'2', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096204', N'Turbatio: ''The Other'' Twin Swords', N'1', N'2', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096301', N'Finest Agate Magic Sword', N'1', N'2', N'2', N'55', N'6', N'40', N'10000', N'1', N'3', N'1', N'2000', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096302', N'Finest Lapis Lazuli Magic Sword', N'1', N'2', N'2', N'55', N'6', N'45', N'10000', N'1', N'3', N'1', N'2000', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096303', N'Finest Aquamarine Magic Sword', N'1', N'2', N'2', N'55', N'6', N'50', N'10000', N'1', N'3', N'1', N'2000', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096304', N'Finest Inca Rose Magic Sword', N'1', N'2', N'2', N'55', N'6', N'55', N'10000', N'1', N'3', N'1', N'2000', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711096307', N'Finest Carnelian Magic Sword', N'1', N'2', N'2', N'55', N'6', N'30', N'10000', N'1', N'3', N'1', N'2000', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111001', N'Celestial Ardent Glaive', N'1', N'0', N'0', N'56', N'1', N'40', N'7000', N'0', N'0', N'1', N'2500', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111002', N'Mighty Tanned Glaive', N'1', N'0', N'0', N'56', N'1', N'45', N'7000', N'0', N'0', N'1', N'2500', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111003', N'Mighty Permanent Glaive', N'1', N'0', N'0', N'56', N'1', N'50', N'7000', N'0', N'0', N'1', N'2500', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111004', N'Highest Grade Jerky Glaive', N'1', N'0', N'0', N'56', N'1', N'55', N'7000', N'0', N'0', N'1', N'2500', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111005', N'Mighty Norm Glaive', N'1', N'0', N'0', N'56', N'1', N'60', N'7000', N'0', N'0', N'1', N'2500', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111006', N'Finest Mighty Glaive', N'1', N'0', N'0', N'56', N'1', N'20', N'7000', N'0', N'0', N'1', N'2500', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711111007', N'Finest Avenger Glaive', N'1', N'0', N'0', N'56', N'1', N'30', N'7000', N'0', N'0', N'1', N'2500', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112001', N'Celestial Ardent Glaive', N'1', N'0', N'0', N'56', N'2', N'40', N'7500', N'0', N'3', N'1', N'2500', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112002', N'Mighty Tanned Glaive', N'1', N'0', N'0', N'56', N'2', N'45', N'7500', N'0', N'3', N'1', N'2500', N'16710', N'2758')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112003', N'Mighty Permanent Glaive', N'1', N'0', N'0', N'56', N'2', N'50', N'7500', N'0', N'3', N'1', N'2500', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112004', N'Highest Grade Jerky Glaive', N'1', N'0', N'0', N'56', N'2', N'55', N'7500', N'0', N'3', N'1', N'2500', N'23780', N'3924')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112005', N'Mighty Norm Glaive', N'1', N'0', N'0', N'56', N'2', N'60', N'7500', N'0', N'3', N'1', N'2500', N'27790', N'4586')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112006', N'Finest Mighty Glaive', N'1', N'0', N'0', N'56', N'2', N'20', N'7500', N'0', N'3', N'1', N'2500', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711112007', N'Finest Avenger Glaive', N'1', N'0', N'0', N'56', N'2', N'30', N'7500', N'0', N'3', N'1', N'2500', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114001', N'Impact Glaive', N'1', N'1', N'5', N'56', N'4', N'40', N'8000', N'1', N'3', N'1', N'2500', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114002', N'Shirof Trench Glaive', N'1', N'1', N'5', N'56', N'4', N'45', N'8000', N'1', N'3', N'1', N'2500', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114003', N'Megarotis Trench Glaive', N'1', N'1', N'5', N'56', N'4', N'50', N'8000', N'1', N'3', N'1', N'2500', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114004', N'Advanced Grade Glaive', N'1', N'1', N'5', N'56', N'4', N'55', N'8000', N'1', N'3', N'1', N'2500', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114005', N'Advanced Grade Glaive', N'1', N'1', N'5', N'56', N'4', N'60', N'8000', N'1', N'3', N'1', N'2500', N'31060', N'5125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114006', N'Finest Jubatus', N'1', N'1', N'5', N'56', N'4', N'20', N'8000', N'1', N'3', N'1', N'2500', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711114007', N'Finest Acerodon', N'1', N'1', N'5', N'56', N'4', N'30', N'8000', N'1', N'3', N'1', N'2500', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115001', N'Rupture', N'1', N'1', N'3', N'56', N'5', N'40', N'9000', N'1', N'3', N'1', N'2500', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115002', N'Superior Cinereus', N'1', N'1', N'3', N'56', N'5', N'45', N'9000', N'1', N'3', N'1', N'2500', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115003', N'Superior Noctivegans', N'1', N'1', N'3', N'56', N'5', N'50', N'9000', N'1', N'3', N'1', N'2500', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115004', N'Superior Glaive Unique', N'1', N'1', N'3', N'56', N'5', N'55', N'9000', N'1', N'3', N'1', N'2500', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115005', N'Superior Glaive Unique', N'1', N'1', N'3', N'56', N'5', N'60', N'9000', N'1', N'3', N'1', N'2500', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115006', N'Nimras', N'1', N'1', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115007', N'Finest Pipistrelus', N'1', N'1', N'3', N'56', N'5', N'30', N'9000', N'1', N'3', N'1', N'2500', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711115306', N'Finest Garnet Glaive', N'1', N'2', N'3', N'56', N'5', N'20', N'9000', N'1', N'3', N'1', N'2500', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116001', N'Hell Scream: Glaive', N'1', N'2', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116002', N'Full Moon: Glaive', N'1', N'2', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116003', N'Soul Catar: Glaive', N'1', N'2', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116004', N'Turvatio: Glaive', N'1', N'2', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116005', N'Mortalis: Glaive', N'1', N'2', N'2', N'56', N'6', N'60', N'10000', N'1', N'3', N'1', N'2500', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116007', N'Sabat: Glaive', N'1', N'2', N'2', N'56', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116101', N'Divine Scream: Glaive', N'1', N'2', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116102', N'New Moon: Glaive', N'1', N'2', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116103', N'Soul Catalyst: Mutant Glaive', N'1', N'2', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116104', N'Turbatio: Mutant Glaive', N'1', N'2', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116107', N'Sabat: The Other Glaive', N'1', N'2', N'2', N'56', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116203', N'Soul Catalyst: the Other Glaive', N'1', N'2', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116204', N'Turbatio: ''The Other'' Glaive', N'1', N'2', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116301', N'Finest Agate Glaive', N'1', N'2', N'2', N'56', N'6', N'40', N'10000', N'1', N'3', N'1', N'2500', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116302', N'Finest Lapis Lazuli Glaive', N'1', N'2', N'2', N'56', N'6', N'45', N'10000', N'1', N'3', N'1', N'2500', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116303', N'Finest Aquamarine Glaive', N'1', N'2', N'2', N'56', N'6', N'50', N'10000', N'1', N'3', N'1', N'2500', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116304', N'Finest Inca Rose Glaive', N'1', N'2', N'2', N'56', N'6', N'55', N'10000', N'1', N'3', N'1', N'2500', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711116307', N'Finest Carnelian Glaive', N'1', N'2', N'2', N'56', N'6', N'30', N'10000', N'1', N'3', N'1', N'2500', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131001', N'Frenzied Hands', N'1', N'0', N'0', N'57', N'1', N'40', N'7000', N'0', N'0', N'1', N'2300', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131002', N'Highest Grade Herz Demon Hands', N'1', N'0', N'0', N'57', N'1', N'45', N'7000', N'0', N'0', N'1', N'2300', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131003', N'Highest Grade Punch Demon Hands', N'1', N'0', N'0', N'57', N'1', N'50', N'7000', N'0', N'0', N'1', N'2300', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131004', N'Highest Grade Scold Demon Hands', N'1', N'0', N'0', N'57', N'1', N'55', N'7000', N'0', N'0', N'1', N'2300', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131005', N'Highest Grade Demon Hands Normal', N'1', N'0', N'0', N'57', N'1', N'60', N'7000', N'0', N'0', N'1', N'2300', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131006', N'Finest Four-Middle Demon Hands', N'1', N'0', N'0', N'57', N'1', N'20', N'7000', N'0', N'0', N'1', N'2300', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711131007', N'Finest Praxius Demon Hands', N'1', N'0', N'0', N'57', N'1', N'30', N'7000', N'0', N'0', N'1', N'2300', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132001', N'Frenzied Hands', N'1', N'0', N'0', N'57', N'2', N'40', N'7500', N'0', N'3', N'1', N'2300', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132002', N'Highest Grade Herz Demon Hands', N'1', N'0', N'0', N'57', N'2', N'45', N'7500', N'0', N'3', N'1', N'2300', N'16710', N'2758')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132003', N'Highest Grade Punch Demon Hands', N'1', N'0', N'0', N'57', N'2', N'50', N'7500', N'0', N'3', N'1', N'2300', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132004', N'Highest Grade Scold Demon Hands', N'1', N'0', N'0', N'57', N'2', N'55', N'7500', N'0', N'3', N'1', N'2300', N'23780', N'3924')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132005', N'Highest Grade Demon Hands Normal', N'1', N'0', N'0', N'57', N'2', N'60', N'7500', N'0', N'3', N'1', N'2300', N'27790', N'4586')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132006', N'Finest Four-Middle Demon Hands', N'1', N'0', N'0', N'57', N'2', N'20', N'7500', N'0', N'3', N'1', N'2300', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711132007', N'Finest Praxius Demon Hands', N'1', N'0', N'0', N'57', N'2', N'30', N'7500', N'0', N'3', N'1', N'2300', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134001', N'Wrists of the Wicked', N'1', N'1', N'5', N'57', N'4', N'40', N'8000', N'1', N'3', N'1', N'2300', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134002', N'Superior Sumatransis', N'1', N'1', N'5', N'57', N'4', N'45', N'8000', N'1', N'3', N'1', N'2300', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134003', N'Superior Dookunensis', N'1', N'1', N'5', N'57', N'4', N'50', N'8000', N'1', N'3', N'1', N'2300', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134004', N'Highest Grade Demon Hands Unique', N'1', N'1', N'5', N'57', N'4', N'55', N'8000', N'1', N'3', N'1', N'2300', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134005', N'Highest Grade Demon Hands Unique', N'1', N'1', N'5', N'57', N'4', N'60', N'8000', N'1', N'3', N'1', N'2300', N'31060', N'5125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134006', N'Finest Pumosus', N'1', N'1', N'5', N'57', N'4', N'20', N'8000', N'1', N'3', N'1', N'2300', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711134007', N'Finest Inferscus', N'1', N'1', N'5', N'57', N'4', N'30', N'8000', N'1', N'3', N'1', N'2300', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135001', N'Devilish Arms', N'1', N'1', N'3', N'57', N'5', N'40', N'9000', N'1', N'3', N'1', N'2300', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135002', N'Superior Naria', N'1', N'1', N'3', N'57', N'5', N'45', N'9000', N'1', N'3', N'1', N'2300', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135003', N'Superior Liparius', N'1', N'1', N'3', N'57', N'5', N'50', N'9000', N'1', N'3', N'1', N'2300', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135004', N'Highest Grade Demon Hands Unique', N'1', N'1', N'3', N'57', N'5', N'55', N'9000', N'1', N'3', N'1', N'2300', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135005', N'Highest Grade Demon Hands Unique', N'1', N'1', N'3', N'57', N'5', N'60', N'9000', N'1', N'3', N'1', N'2300', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135006', N'Exus', N'1', N'1', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135007', N'Cruzemani', N'1', N'1', N'3', N'57', N'5', N'30', N'9000', N'1', N'3', N'1', N'2300', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711135306', N'Finest Garnet Demon Hands', N'1', N'2', N'3', N'57', N'5', N'20', N'9000', N'1', N'3', N'1', N'2300', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136001', N'Hell Scream: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136002', N'Full Moon: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136003', N'Soul Catar: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136004', N'Turvatio: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136005', N'Mortalis: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136007', N'Sabat: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136101', N'Divine Scream: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136102', N'New Moon: Demon Hands', N'1', N'2', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136103', N'Soul Catalyst: Mutant Demon Hands', N'1', N'2', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136104', N'Turbatio: Mutant Heavy Gauntlets', N'1', N'2', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136107', N'Sabat: The Other Demon Hands', N'1', N'2', N'2', N'57', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136203', N'Soul Catalyst: the Other Demon Hands', N'1', N'2', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136204', N'Turbatio: ''The Other'' Heavy Gauntlets', N'1', N'2', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136301', N'Finest Agate Demon Hands', N'1', N'2', N'2', N'57', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136302', N'Finest Lapis Lazuli Demon Hands', N'1', N'2', N'2', N'57', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136303', N'Finest Aquamarine Demon Hands', N'1', N'2', N'2', N'57', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136304', N'Finest Inca Rose Demon Hands', N'1', N'2', N'2', N'57', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711136307', N'Finest Carnelian Demon Hands', N'1', N'2', N'2', N'57', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151001', N'Fighting Insanity', N'1', N'0', N'0', N'58', N'1', N'40', N'7000', N'0', N'0', N'1', N'2000', N'12820', N'2116')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151002', N'Superior Bited Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'45', N'7000', N'0', N'0', N'1', N'2000', N'15730', N'2596')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151003', N'Superior Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'50', N'7000', N'0', N'0', N'1', N'2000', N'18910', N'3121')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151004', N'Superior Burnoff Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'55', N'7000', N'0', N'0', N'1', N'2000', N'22380', N'3693')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151005', N'Superior Weapon Bag Normal', N'1', N'0', N'0', N'58', N'1', N'60', N'7000', N'0', N'0', N'1', N'2000', N'26150', N'4315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151006', N'Finest Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'20', N'7000', N'0', N'0', N'1', N'2000', N'4110', N'678')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711151007', N'Finest Blisk Weapon Bag', N'1', N'0', N'0', N'58', N'1', N'30', N'7000', N'0', N'0', N'1', N'2000', N'7890', N'1302')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152001', N'Fighting Insanity', N'1', N'0', N'0', N'58', N'2', N'40', N'7500', N'0', N'3', N'1', N'2000', N'13630', N'2249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152002', N'Superior Bited Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'45', N'7500', N'0', N'3', N'1', N'2000', N'16710', N'2758')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152003', N'Superior Stagnant Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'50', N'7500', N'0', N'3', N'1', N'2000', N'20090', N'3315')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152004', N'Superior Burnoff Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'55', N'7500', N'0', N'3', N'1', N'2000', N'23780', N'3924')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152005', N'Superior Weapon Bag Normal', N'1', N'0', N'0', N'58', N'2', N'60', N'7500', N'0', N'3', N'1', N'2000', N'27790', N'4586')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152006', N'Finest Exotic Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'20', N'7500', N'0', N'3', N'1', N'2000', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711152007', N'Finest Blisk Weapon Bag', N'1', N'0', N'0', N'58', N'2', N'30', N'7500', N'0', N'3', N'1', N'2000', N'8380', N'1383')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154001', N'Hands of the Infernal', N'1', N'1', N'5', N'58', N'4', N'40', N'8000', N'1', N'3', N'1', N'2000', N'15230', N'2513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154002', N'Superior Kinosternon', N'1', N'1', N'5', N'58', N'4', N'45', N'8000', N'1', N'3', N'1', N'2000', N'18680', N'3083')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154003', N'Superior Onata', N'1', N'1', N'5', N'58', N'4', N'50', N'8000', N'1', N'3', N'1', N'2000', N'22460', N'3706')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154004', N'Superior Weapon Bag Rare', N'1', N'1', N'5', N'58', N'4', N'55', N'8000', N'1', N'3', N'1', N'2000', N'26580', N'4386')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154005', N'Superior Weapon Bag Rare', N'1', N'1', N'5', N'58', N'4', N'60', N'8000', N'1', N'3', N'1', N'2000', N'31060', N'5125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154006', N'Finest Chrysemys', N'1', N'1', N'5', N'58', N'4', N'20', N'8000', N'1', N'3', N'1', N'2000', N'4880', N'805')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711154007', N'Finest Chrysemys', N'1', N'1', N'5', N'58', N'4', N'30', N'8000', N'1', N'3', N'1', N'2000', N'9370', N'1546')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155001', N'Lucifer''s Manus', N'1', N'1', N'3', N'58', N'5', N'40', N'9000', N'1', N'3', N'1', N'2000', N'16030', N'2645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155002', N'Superior Kareta', N'1', N'1', N'3', N'58', N'5', N'45', N'9000', N'1', N'3', N'1', N'2000', N'19660', N'3244')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155003', N'Superior Selgata', N'1', N'1', N'3', N'58', N'5', N'50', N'9000', N'1', N'3', N'1', N'2000', N'23640', N'3901')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155004', N'Superior Weapon Bag Unique', N'1', N'1', N'3', N'58', N'5', N'55', N'9000', N'1', N'3', N'1', N'2000', N'27980', N'4617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155005', N'Superior Weapon Bag Unique', N'1', N'1', N'3', N'58', N'5', N'60', N'9000', N'1', N'3', N'1', N'2000', N'32690', N'5394')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155006', N'Lact Fleece', N'1', N'1', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155007', N'Hades', N'1', N'1', N'3', N'58', N'5', N'30', N'9000', N'1', N'3', N'1', N'2000', N'9860', N'1627')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711155306', N'Finest Garnet Weapon Bag', N'1', N'2', N'3', N'58', N'5', N'20', N'9000', N'1', N'3', N'1', N'2000', N'5140', N'848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156001', N'Hell Scream: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156002', N'Full Moon: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156003', N'Soul Catar: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156004', N'Turvatio: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156005', N'Mortalis: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'60', N'10000', N'1', N'3', N'1', N'2300', N'34320', N'5663')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156007', N'Sabat: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156101', N'Divine Scream: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156102', N'New Moon: Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156103', N'Soul Catalyst: Mutant Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156104', N'Turbatio: Mutant Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156107', N'Sabat: The Other Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156203', N'Soul Catalyst: the Other Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156204', N'Turbatio: ''The Other'' Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156301', N'Finest Agate Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'40', N'10000', N'1', N'3', N'1', N'2300', N'16830', N'2777')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156302', N'Finest Lapis Lazuli Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'45', N'10000', N'1', N'3', N'1', N'2300', N'20640', N'3406')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156303', N'Finest Aquamarine Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'50', N'10000', N'1', N'3', N'1', N'2300', N'24820', N'4096')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156304', N'Finest Inca Rose Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'55', N'10000', N'1', N'3', N'1', N'2300', N'29380', N'4848')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'711156307', N'Finest Carnelian Weapon Bag', N'1', N'2', N'2', N'58', N'6', N'30', N'10000', N'1', N'3', N'1', N'2300', N'10350', N'1708')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011001', N'Aura Robe', N'1', N'0', N'0', N'1', N'1', N'40', N'5000', N'0', N'0', N'2', N'1400', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011002', N'Arcane Robe', N'1', N'0', N'0', N'1', N'1', N'45', N'5000', N'0', N'0', N'2', N'1400', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011003', N'Gior Robe', N'1', N'0', N'0', N'1', N'1', N'50', N'5000', N'0', N'0', N'2', N'1400', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011004', N'Oukase Robe', N'1', N'0', N'0', N'1', N'1', N'55', N'5000', N'0', N'0', N'2', N'1400', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011005', N'Kyaglu Robe', N'1', N'0', N'0', N'1', N'1', N'60', N'5000', N'0', N'0', N'2', N'1400', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011006', N'Top Quality Lambswool Robe', N'1', N'0', N'0', N'1', N'1', N'20', N'5000', N'0', N'0', N'2', N'1400', N'2060', N'340')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712011007', N'Finest Shroud Robe', N'1', N'0', N'0', N'1', N'1', N'30', N'5000', N'0', N'0', N'2', N'1400', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012001', N'Aura Robe', N'1', N'0', N'0', N'1', N'2', N'40', N'5500', N'0', N'3', N'2', N'1400', N'6820', N'1125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012002', N'Arcane Robe', N'1', N'0', N'0', N'1', N'2', N'45', N'5500', N'0', N'3', N'2', N'1400', N'8360', N'1379')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012003', N'Gior Robe', N'1', N'0', N'0', N'1', N'2', N'50', N'5500', N'0', N'3', N'2', N'1400', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012004', N'Oukase Robe', N'1', N'0', N'0', N'1', N'2', N'55', N'5500', N'0', N'3', N'2', N'1400', N'11890', N'1962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012005', N'Kyaglu Robe', N'1', N'0', N'0', N'1', N'2', N'60', N'5500', N'0', N'3', N'2', N'1400', N'13890', N'2292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012006', N'Top Quality Lambswool Robe', N'1', N'0', N'0', N'1', N'2', N'20', N'5500', N'0', N'3', N'2', N'1400', N'2180', N'360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712012007', N'Finest Shroud Robe', N'1', N'0', N'0', N'1', N'2', N'30', N'5500', N'0', N'3', N'2', N'1400', N'4190', N'691')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014001', N'Shady Robe', N'1', N'1', N'5', N'1', N'4', N'40', N'6000', N'1', N'3', N'2', N'1400', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014002', N'Charmed Robe', N'1', N'1', N'5', N'1', N'4', N'45', N'6000', N'1', N'3', N'2', N'1400', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014003', N'Knit Robe', N'1', N'1', N'5', N'1', N'4', N'50', N'6000', N'1', N'3', N'2', N'1400', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014004', N'Falcata Robe', N'1', N'1', N'5', N'1', N'4', N'55', N'6000', N'1', N'3', N'2', N'1400', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014005', N'Yeroti Robe', N'1', N'1', N'5', N'1', N'4', N'60', N'6000', N'1', N'3', N'2', N'1400', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014006', N'Finest Forbidden Robe', N'1', N'1', N'5', N'1', N'4', N'20', N'6000', N'1', N'3', N'2', N'1400', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712014007', N'Finest Indent Robe', N'1', N'1', N'5', N'1', N'4', N'30', N'6000', N'1', N'3', N'2', N'1400', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015001', N'Rainbow Robe', N'1', N'1', N'3', N'1', N'5', N'40', N'6500', N'1', N'3', N'2', N'1400', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015002', N'Gnomish Robe', N'1', N'1', N'3', N'1', N'5', N'45', N'6500', N'1', N'3', N'2', N'1400', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015003', N'Joyeuse Robe', N'1', N'1', N'3', N'1', N'5', N'50', N'6500', N'1', N'3', N'2', N'1400', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015004', N'Protector Robe', N'1', N'1', N'3', N'1', N'5', N'55', N'6500', N'1', N'3', N'2', N'1400', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015005', N'Amarow Robe', N'1', N'1', N'3', N'1', N'5', N'60', N'6500', N'1', N'3', N'2', N'1400', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015006', N'Finest Ventus Robe', N'1', N'1', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015007', N'Finest Caligo Robe', N'1', N'1', N'3', N'1', N'5', N'30', N'6500', N'1', N'3', N'2', N'1400', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712015306', N'Finest Garnet Robe', N'1', N'2', N'3', N'1', N'5', N'20', N'6500', N'1', N'3', N'2', N'1400', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016001', N'Jigoku Robe', N'1', N'2', N'2', N'1', N'6', N'40', N'7000', N'1', N'3', N'2', N'1400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016002', N'Quintara Robe', N'1', N'2', N'2', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016003', N'Yufnae Robe', N'1', N'2', N'2', N'1', N'6', N'50', N'7000', N'1', N'3', N'2', N'1400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016004', N'Kilij-Kalkhan Robe', N'1', N'2', N'2', N'1', N'6', N'55', N'7000', N'1', N'3', N'2', N'1400', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016005', N'Opaline Robe', N'1', N'2', N'2', N'1', N'6', N'60', N'7000', N'1', N'3', N'2', N'1400', N'17160', N'2831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016007', N'Finest Valfare Robe', N'1', N'2', N'2', N'1', N'6', N'30', N'7000', N'1', N'3', N'2', N'1400', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016301', N'Finest Agate Robe', N'1', N'2', N'2', N'1', N'6', N'40', N'7000', N'1', N'3', N'2', N'1400', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016302', N'Finest Lapis Lazuli Robe', N'1', N'2', N'2', N'1', N'6', N'45', N'7000', N'1', N'3', N'2', N'1400', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016303', N'Finest Aquamarine Robe', N'1', N'2', N'2', N'1', N'6', N'50', N'7000', N'1', N'3', N'2', N'1400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016304', N'Finest Inca Rose Robe', N'1', N'2', N'2', N'1', N'6', N'55', N'7000', N'1', N'3', N'2', N'1400', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712016307', N'Finest Carnelian Robe', N'1', N'2', N'2', N'1', N'6', N'30', N'7000', N'1', N'3', N'2', N'1400', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021001', N'Callous Armor', N'1', N'0', N'0', N'2', N'1', N'40', N'5000', N'0', N'0', N'2', N'1900', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021002', N'Oiled Armor', N'1', N'0', N'0', N'2', N'1', N'45', N'5000', N'0', N'0', N'2', N'1900', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021003', N'Telek Armor', N'1', N'0', N'0', N'2', N'1', N'50', N'5000', N'0', N'0', N'2', N'1900', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021004', N'Alifae Armor', N'1', N'0', N'0', N'2', N'1', N'55', N'5000', N'0', N'0', N'2', N'1900', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021005', N'Groovy Armor', N'1', N'0', N'0', N'2', N'1', N'60', N'5000', N'0', N'0', N'2', N'1900', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021006', N'Finest Suede Leather Armor', N'1', N'0', N'0', N'2', N'1', N'20', N'5000', N'0', N'0', N'2', N'1900', N'2060', N'340')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712021007', N'Finest Veil Leather Armor', N'1', N'0', N'0', N'2', N'1', N'30', N'5000', N'0', N'0', N'2', N'1900', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022001', N'Callous Armor', N'1', N'0', N'0', N'2', N'2', N'40', N'5500', N'0', N'3', N'2', N'1900', N'6820', N'1125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022002', N'Oiled Armor', N'1', N'0', N'0', N'2', N'2', N'45', N'5500', N'0', N'3', N'2', N'1900', N'8360', N'1379')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022003', N'Telek Armor', N'1', N'0', N'0', N'2', N'2', N'50', N'5500', N'0', N'3', N'2', N'1900', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022004', N'Alifae Armor', N'1', N'0', N'0', N'2', N'2', N'55', N'5500', N'0', N'3', N'2', N'1900', N'11890', N'1962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022005', N'Groovy Armor', N'1', N'0', N'0', N'2', N'2', N'60', N'5500', N'0', N'3', N'2', N'1900', N'13890', N'2292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022006', N'Finest Suede Leather Armor', N'1', N'0', N'0', N'2', N'2', N'20', N'5500', N'0', N'3', N'2', N'1900', N'2180', N'360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712022007', N'Finest Veil Leather Armor', N'1', N'0', N'0', N'2', N'2', N'30', N'5500', N'0', N'3', N'2', N'1900', N'4190', N'691')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024001', N'Diavolu Armor', N'1', N'1', N'5', N'2', N'4', N'40', N'6000', N'1', N'3', N'2', N'1900', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024002', N'Guardian''s Armor', N'1', N'1', N'5', N'2', N'4', N'45', N'6000', N'1', N'3', N'2', N'1900', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024003', N'Uraso Armor', N'1', N'1', N'5', N'2', N'4', N'50', N'6000', N'1', N'3', N'2', N'1900', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024004', N'Cool Armor', N'1', N'1', N'5', N'2', N'4', N'55', N'6000', N'1', N'3', N'2', N'1900', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024005', N'Ithrojay Armor', N'1', N'1', N'5', N'2', N'4', N'60', N'6000', N'1', N'3', N'2', N'1900', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024006', N'Finest Facility Leather Armor', N'1', N'1', N'5', N'2', N'4', N'20', N'6000', N'1', N'3', N'2', N'1900', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712024007', N'Finest Deliver Leather Armor', N'1', N'1', N'5', N'2', N'4', N'30', N'6000', N'1', N'3', N'2', N'1900', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025001', N'Mictlan Armor', N'1', N'1', N'3', N'2', N'5', N'40', N'6500', N'1', N'3', N'2', N'1900', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025002', N'Agile Armor', N'1', N'1', N'3', N'2', N'5', N'45', N'6500', N'1', N'3', N'2', N'1900', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025003', N'Velita Armor', N'1', N'1', N'3', N'2', N'5', N'50', N'6500', N'1', N'3', N'2', N'1900', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025004', N'Fossa Armor', N'1', N'1', N'3', N'2', N'5', N'55', N'6500', N'1', N'3', N'2', N'1900', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025005', N'Refrell Armor', N'1', N'1', N'3', N'2', N'5', N'60', N'6500', N'1', N'3', N'2', N'1900', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025006', N'Finest Descend Leather Armor', N'1', N'1', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025007', N'Finest Lagrimas Leather Armor', N'1', N'1', N'3', N'2', N'5', N'30', N'6500', N'1', N'3', N'2', N'1900', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712025306', N'Finest Garnet Leather Armor', N'1', N'2', N'3', N'2', N'5', N'20', N'6500', N'1', N'3', N'2', N'1900', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026001', N'Aaru Armor', N'1', N'2', N'2', N'2', N'6', N'40', N'7000', N'1', N'3', N'2', N'1900', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026002', N'Angler Armor', N'1', N'2', N'2', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026003', N'Uriel Armor', N'1', N'2', N'2', N'2', N'6', N'50', N'7000', N'1', N'3', N'2', N'1900', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026004', N'Gust Armor', N'1', N'2', N'2', N'2', N'6', N'55', N'7000', N'1', N'3', N'2', N'1900', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026005', N'Uzalluet Armor', N'1', N'2', N'2', N'2', N'6', N'60', N'7000', N'1', N'3', N'2', N'1900', N'17160', N'2831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026007', N'Finest Catalus Leather Armor', N'1', N'2', N'2', N'2', N'6', N'30', N'7000', N'1', N'3', N'2', N'1900', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026301', N'Finest Agate Leather Armor', N'1', N'2', N'2', N'2', N'6', N'40', N'7000', N'1', N'3', N'2', N'1900', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026302', N'Finest Lapis Lazuli Leather Armor', N'1', N'2', N'2', N'2', N'6', N'45', N'7000', N'1', N'3', N'2', N'1900', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026303', N'Finest Aquamarine Leather Armor', N'1', N'2', N'2', N'2', N'6', N'50', N'7000', N'1', N'3', N'2', N'1900', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026304', N'Finest Inca Rose Leather Armor', N'1', N'2', N'2', N'2', N'6', N'55', N'7000', N'1', N'3', N'2', N'1900', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712026307', N'Finest Carnelian Leather Armor', N'1', N'2', N'2', N'2', N'6', N'30', N'7000', N'1', N'3', N'2', N'1900', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031001', N'Spectral Chainmail', N'1', N'0', N'0', N'3', N'1', N'40', N'5000', N'0', N'0', N'2', N'3000', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031002', N'Sapphire Chainmail', N'1', N'0', N'0', N'3', N'1', N'45', N'5000', N'0', N'0', N'2', N'3000', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031003', N'Zuhr Chainmail', N'1', N'0', N'0', N'3', N'1', N'50', N'5000', N'0', N'0', N'2', N'3000', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031004', N'Fedora Chainmail', N'1', N'0', N'0', N'3', N'1', N'55', N'5000', N'0', N'0', N'2', N'3000', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031005', N'Jaymic Chainmail', N'1', N'0', N'0', N'3', N'1', N'60', N'5000', N'0', N'0', N'2', N'3000', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031006', N'Finest Banded Chain Mail', N'1', N'0', N'0', N'3', N'1', N'20', N'5000', N'0', N'0', N'2', N'3000', N'2060', N'340')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712031007', N'Finest Birni Chain Mail', N'1', N'0', N'0', N'3', N'1', N'30', N'5000', N'0', N'0', N'2', N'3000', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032001', N'Spectral Chainmail', N'1', N'0', N'0', N'3', N'2', N'40', N'5500', N'0', N'3', N'2', N'3000', N'6820', N'1125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032002', N'Sapphire Chainmail', N'1', N'0', N'0', N'3', N'2', N'45', N'5500', N'0', N'3', N'2', N'3000', N'8360', N'1379')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032003', N'Zuhr Chainmail', N'1', N'0', N'0', N'3', N'2', N'50', N'5500', N'0', N'3', N'2', N'3000', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032004', N'Fedora Chainmail', N'1', N'0', N'0', N'3', N'2', N'55', N'5500', N'0', N'3', N'2', N'3000', N'11890', N'1962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032005', N'Jaymic Chainmail', N'1', N'0', N'0', N'3', N'2', N'60', N'5500', N'0', N'3', N'2', N'3000', N'13890', N'2292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032006', N'Finest Banded Chain Mail', N'1', N'0', N'0', N'3', N'2', N'20', N'5500', N'0', N'3', N'2', N'3000', N'2180', N'360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712032007', N'Finest Birni Chain Mail', N'1', N'0', N'0', N'3', N'2', N'30', N'5500', N'0', N'3', N'2', N'3000', N'4190', N'691')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034001', N'Necuratu Chainmail', N'1', N'1', N'5', N'3', N'4', N'40', N'6000', N'1', N'3', N'2', N'3000', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034002', N'Crude Chainmail', N'1', N'1', N'5', N'3', N'4', N'45', N'6000', N'1', N'3', N'2', N'3000', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034003', N'Triton Chainmail', N'1', N'1', N'5', N'3', N'4', N'50', N'6000', N'1', N'3', N'2', N'3000', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034004', N'Kalavolg Chainmail', N'1', N'1', N'5', N'3', N'4', N'55', N'6000', N'1', N'3', N'2', N'3000', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034005', N'Necuratu Chainmail', N'1', N'1', N'5', N'3', N'4', N'60', N'6000', N'1', N'3', N'2', N'3000', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034006', N'Finest Brisk Chain Mail', N'1', N'1', N'5', N'3', N'4', N'20', N'6000', N'1', N'3', N'2', N'3000', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712034007', N'Finest Rivert Chain Mail', N'1', N'1', N'5', N'3', N'4', N'30', N'6000', N'1', N'3', N'2', N'3000', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035001', N'Pangolin Chainmail', N'1', N'1', N'3', N'3', N'5', N'40', N'6500', N'1', N'3', N'2', N'3000', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035002', N'Bared Chainmail', N'1', N'1', N'3', N'3', N'5', N'45', N'6500', N'1', N'3', N'2', N'3000', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035003', N'Harpy Chainmail', N'1', N'1', N'3', N'3', N'5', N'50', N'6500', N'1', N'3', N'2', N'3000', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035004', N'Laughter Chainmail', N'1', N'1', N'3', N'3', N'5', N'55', N'6500', N'1', N'3', N'2', N'3000', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035005', N'Zhichava Chainmail', N'1', N'1', N'3', N'3', N'5', N'60', N'6500', N'1', N'3', N'2', N'3000', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035006', N'Finest Libion Chain Mail', N'1', N'1', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035007', N'Finest Monochromatic Chain Mail', N'1', N'1', N'3', N'3', N'5', N'30', N'6500', N'1', N'3', N'2', N'3000', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712035306', N'Finest Garnet Chain Mail', N'1', N'2', N'3', N'3', N'5', N'20', N'6500', N'1', N'3', N'2', N'3000', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036001', N'Ekera Chainmail', N'1', N'2', N'2', N'3', N'6', N'40', N'7000', N'1', N'3', N'2', N'3000', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036002', N'Nettle Chainmail', N'1', N'2', N'2', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036003', N'Poniard Chainmail', N'1', N'2', N'2', N'3', N'6', N'50', N'7000', N'1', N'3', N'2', N'3000', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036004', N'Aspis Chainmail', N'1', N'2', N'2', N'3', N'6', N'55', N'7000', N'1', N'3', N'2', N'3000', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036005', N'Kraloo Chainmail', N'1', N'2', N'2', N'3', N'6', N'60', N'7000', N'1', N'3', N'2', N'3000', N'17160', N'2831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036007', N'Finest Surtr Chain Mail', N'1', N'2', N'2', N'3', N'6', N'30', N'7000', N'1', N'3', N'2', N'3000', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036301', N'Finest Agate Chain Mail', N'1', N'2', N'2', N'3', N'6', N'40', N'7000', N'1', N'3', N'2', N'3000', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036302', N'Finest Lapis Lazuli Chain Mail', N'1', N'2', N'2', N'3', N'6', N'45', N'7000', N'1', N'3', N'2', N'3000', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036303', N'Finest Aquamarine Chain Mail', N'1', N'2', N'2', N'3', N'6', N'50', N'7000', N'1', N'3', N'2', N'3000', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036304', N'Finest Inca Rose Chain Mail', N'1', N'2', N'2', N'3', N'6', N'55', N'7000', N'1', N'3', N'2', N'3000', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712036307', N'Finest Carnelian Chain Mail', N'1', N'2', N'2', N'3', N'6', N'30', N'7000', N'1', N'3', N'2', N'3000', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041001', N'Ethereal Plate', N'1', N'0', N'0', N'4', N'1', N'40', N'5000', N'0', N'0', N'2', N'5700', N'6420', N'1059')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041002', N'Kalypsys Plate', N'1', N'0', N'0', N'4', N'1', N'45', N'5000', N'0', N'0', N'2', N'5700', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041003', N'Lorelei Plate', N'1', N'0', N'0', N'4', N'1', N'50', N'5000', N'0', N'0', N'2', N'5700', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041004', N'Titan Plate', N'1', N'0', N'0', N'4', N'1', N'55', N'5000', N'0', N'0', N'2', N'5700', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041005', N'Chromatic Plate', N'1', N'0', N'0', N'4', N'1', N'60', N'5000', N'0', N'0', N'2', N'5700', N'13070', N'2157')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041006', N'Finest Transitional Plate', N'1', N'0', N'0', N'4', N'1', N'20', N'5000', N'0', N'0', N'2', N'5700', N'2060', N'340')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712041007', N'Finest Raven Plate', N'1', N'0', N'0', N'4', N'1', N'30', N'5000', N'0', N'0', N'2', N'5700', N'3940', N'650')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042001', N'Ethereal Plate', N'1', N'0', N'0', N'4', N'2', N'40', N'5500', N'0', N'3', N'2', N'5700', N'6820', N'1125')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042002', N'Kalypsys Plate', N'1', N'0', N'0', N'4', N'2', N'45', N'5500', N'0', N'3', N'2', N'5700', N'8360', N'1379')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042003', N'Lorelei Plate', N'1', N'0', N'0', N'4', N'2', N'50', N'5500', N'0', N'3', N'2', N'5700', N'10050', N'1658')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042004', N'Titan Plate', N'1', N'0', N'0', N'4', N'2', N'55', N'5500', N'0', N'3', N'2', N'5700', N'11890', N'1962')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042005', N'Chromatic Plate', N'1', N'0', N'0', N'4', N'2', N'60', N'5500', N'0', N'3', N'2', N'5700', N'13890', N'2292')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042006', N'Finest Transitional Plate', N'1', N'0', N'0', N'4', N'2', N'20', N'5500', N'0', N'3', N'2', N'5700', N'2180', N'360')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712042007', N'Finest Raven Plate', N'1', N'0', N'0', N'4', N'2', N'30', N'5500', N'0', N'3', N'2', N'5700', N'4190', N'691')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044001', N'Noble Plate', N'1', N'1', N'5', N'4', N'4', N'40', N'6000', N'1', N'3', N'2', N'5700', N'7620', N'1257')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044002', N'Morgana Plate', N'1', N'1', N'5', N'4', N'4', N'45', N'6000', N'1', N'3', N'2', N'5700', N'9340', N'1541')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044003', N'Arcanite Plate', N'1', N'1', N'5', N'4', N'4', N'50', N'6000', N'1', N'3', N'2', N'5700', N'11230', N'1853')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044004', N'Kharavela Plate', N'1', N'1', N'5', N'4', N'4', N'55', N'6000', N'1', N'3', N'2', N'5700', N'13290', N'2193')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044005', N'Clockwork Plate', N'1', N'1', N'5', N'4', N'4', N'60', N'6000', N'1', N'3', N'2', N'5700', N'15520', N'2560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044006', N'Finest Effort Plate', N'1', N'1', N'5', N'4', N'4', N'20', N'6000', N'1', N'3', N'2', N'5700', N'2440', N'403')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712044007', N'Finest Empulroy Plate', N'1', N'1', N'5', N'4', N'4', N'30', N'6000', N'1', N'3', N'2', N'5700', N'4680', N'772')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045001', N'Brave Plate', N'1', N'1', N'3', N'4', N'5', N'40', N'6500', N'1', N'3', N'2', N'5700', N'8020', N'1323')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045002', N'Crypt Plate', N'1', N'1', N'3', N'4', N'5', N'45', N'6500', N'1', N'3', N'2', N'5700', N'9830', N'1622')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045003', N'Celestine Plate', N'1', N'1', N'3', N'4', N'5', N'50', N'6500', N'1', N'3', N'2', N'5700', N'11820', N'1950')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045004', N'Era Plate', N'1', N'1', N'3', N'4', N'5', N'55', N'6500', N'1', N'3', N'2', N'5700', N'13990', N'2308')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045005', N'Blaghty Plate', N'1', N'1', N'3', N'4', N'5', N'60', N'6500', N'1', N'3', N'2', N'5700', N'16340', N'2696')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045006', N'Finest Blaze Plate', N'1', N'1', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045007', N'Finest Fandom-Versus Plate', N'1', N'1', N'3', N'4', N'5', N'30', N'6500', N'1', N'3', N'2', N'5700', N'4930', N'813')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712045306', N'Finest Garnet Plate', N'1', N'2', N'3', N'4', N'5', N'20', N'6500', N'1', N'3', N'2', N'5700', N'2570', N'424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046001', N'Stygia Plate', N'1', N'2', N'2', N'4', N'6', N'40', N'7000', N'1', N'3', N'2', N'5700', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046002', N'Vengeance Plate', N'1', N'2', N'2', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046003', N'Willas Plate', N'1', N'2', N'2', N'4', N'6', N'50', N'7000', N'1', N'3', N'2', N'5700', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046004', N'Camilla Plate', N'1', N'2', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046005', N'Foiblo Plate', N'1', N'2', N'2', N'4', N'6', N'60', N'7000', N'1', N'3', N'2', N'5700', N'17160', N'2831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046007', N'Finest Baldr Plate', N'1', N'2', N'2', N'4', N'6', N'30', N'7000', N'1', N'3', N'2', N'5700', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046301', N'Finest Agate Plate', N'1', N'2', N'2', N'4', N'6', N'40', N'7000', N'1', N'3', N'2', N'5700', N'8420', N'1389')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046302', N'Finest Lapis Lazuli Plate', N'1', N'2', N'2', N'4', N'6', N'45', N'7000', N'1', N'3', N'2', N'5700', N'10320', N'1702')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046303', N'Finest Aquamarine Plate', N'1', N'2', N'2', N'4', N'6', N'50', N'7000', N'1', N'3', N'2', N'5700', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046304', N'Finest Inca Rose Plate', N'1', N'2', N'2', N'4', N'6', N'55', N'7000', N'1', N'3', N'2', N'5700', N'14690', N'2424')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'712046307', N'Finest Carnelian Plate', N'1', N'2', N'2', N'4', N'6', N'30', N'7000', N'1', N'3', N'2', N'5700', N'5180', N'855')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011001', N'Aura Hood', N'1', N'0', N'0', N'1', N'1', N'40', N'3000', N'0', N'0', N'2', N'900', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011002', N'Arcane Hood', N'1', N'0', N'0', N'1', N'1', N'45', N'3000', N'0', N'0', N'2', N'900', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011003', N'Gior Hood', N'1', N'0', N'0', N'1', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011004', N'Oukase Hood', N'1', N'0', N'0', N'1', N'1', N'55', N'3000', N'0', N'0', N'2', N'900', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011005', N'Kyaglu Hood', N'1', N'0', N'0', N'1', N'1', N'60', N'3000', N'0', N'0', N'2', N'900', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011006', N'Top Quality Lambswool Hood', N'1', N'0', N'0', N'1', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713011007', N'Finest Shroud Hood', N'1', N'0', N'0', N'1', N'1', N'30', N'3000', N'0', N'0', N'2', N'900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012001', N'Aura Hood', N'1', N'0', N'0', N'1', N'2', N'40', N'3200', N'0', N'3', N'2', N'900', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012002', N'Arcane Hood', N'1', N'0', N'0', N'1', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012003', N'Gior Hood', N'1', N'0', N'0', N'1', N'2', N'50', N'3200', N'0', N'3', N'2', N'900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012004', N'Oukase Hood', N'1', N'0', N'0', N'1', N'2', N'55', N'3200', N'0', N'3', N'2', N'900', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012005', N'Kyaglu Hood', N'1', N'0', N'0', N'1', N'2', N'60', N'3200', N'0', N'3', N'2', N'900', N'9270', N'1530')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012006', N'Top Quality Lambswool Hood', N'1', N'0', N'0', N'1', N'2', N'20', N'3200', N'0', N'3', N'2', N'900', N'1450', N'239')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713012007', N'Finest Shroud Hood', N'1', N'0', N'0', N'1', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014001', N'Shady Hood', N'1', N'1', N'5', N'1', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014002', N'Charmed Hood', N'1', N'1', N'5', N'1', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014003', N'Knit Hood', N'1', N'1', N'5', N'1', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014004', N'Falcata Hood', N'1', N'1', N'5', N'1', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'8860', N'1461')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014005', N'Yeroti Hood', N'1', N'1', N'5', N'1', N'4', N'60', N'3400', N'1', N'3', N'2', N'900', N'10360', N'1709')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014006', N'Finest Forbidden Hood', N'1', N'1', N'5', N'1', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713014007', N'Finest Indent Hood', N'1', N'1', N'5', N'1', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015001', N'Rainbow Hood', N'1', N'1', N'3', N'1', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015002', N'Gnomish Hood', N'1', N'1', N'3', N'1', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015003', N'Joyeuse Hood', N'1', N'1', N'3', N'1', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015004', N'Protector Hood', N'1', N'1', N'3', N'1', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015005', N'Amarow Hood', N'1', N'1', N'3', N'1', N'5', N'60', N'3600', N'1', N'3', N'2', N'900', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015006', N'Finest Ventus Hood', N'1', N'1', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015007', N'Finest Caligo Hood', N'1', N'1', N'3', N'1', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713015306', N'Finest Garnet Hood', N'1', N'2', N'3', N'1', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016001', N'Jigoku Hood', N'1', N'2', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016002', N'Quintara Hood', N'1', N'2', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016003', N'Yufnae Hood', N'1', N'2', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016004', N'Kilij-Kalkhan Hood', N'1', N'2', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016005', N'Opaline Hood', N'1', N'2', N'2', N'1', N'6', N'60', N'4000', N'1', N'3', N'2', N'900', N'11450', N'1889')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016007', N'Finest Valfare Hood', N'1', N'2', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016301', N'Finest Agate Hood', N'1', N'2', N'2', N'1', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016302', N'Finest Lapis Lazuli Hood', N'1', N'2', N'2', N'1', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016303', N'Finest Aquamarine Hood', N'1', N'2', N'2', N'1', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016304', N'Finest Inca Rose Hood', N'1', N'2', N'2', N'1', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713016307', N'Finest Carnelian Hood', N'1', N'2', N'2', N'1', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021001', N'Callous Cap', N'1', N'0', N'0', N'2', N'1', N'40', N'3000', N'0', N'0', N'2', N'900', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021002', N'Oiled Cap', N'1', N'0', N'0', N'2', N'1', N'45', N'3000', N'0', N'0', N'2', N'900', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021003', N'Telek Cap', N'1', N'0', N'0', N'2', N'1', N'50', N'3000', N'0', N'0', N'2', N'900', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021004', N'Alifae Cap', N'1', N'0', N'0', N'2', N'1', N'55', N'3000', N'0', N'0', N'2', N'900', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021005', N'Groovy Cap', N'1', N'0', N'0', N'2', N'1', N'60', N'3000', N'0', N'0', N'2', N'900', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021006', N'Finest Suede Leather Cap', N'1', N'0', N'0', N'2', N'1', N'20', N'3000', N'0', N'0', N'2', N'900', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713021007', N'Finest Veil Leather Cap', N'1', N'0', N'0', N'2', N'1', N'30', N'3000', N'0', N'0', N'2', N'900', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022001', N'Callous Cap', N'1', N'0', N'0', N'2', N'2', N'40', N'3200', N'0', N'3', N'2', N'900', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022002', N'Oiled Cap', N'1', N'0', N'0', N'2', N'2', N'45', N'3200', N'0', N'3', N'2', N'900', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022003', N'Telek Cap', N'1', N'0', N'0', N'2', N'2', N'50', N'3200', N'0', N'3', N'2', N'900', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022004', N'Alifae Cap', N'1', N'0', N'0', N'2', N'2', N'55', N'3200', N'0', N'3', N'2', N'900', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022005', N'Groovy Cap', N'1', N'0', N'0', N'2', N'2', N'60', N'3200', N'0', N'3', N'2', N'900', N'9270', N'1530')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022006', N'Finest Suede Leather Cap', N'1', N'0', N'0', N'2', N'2', N'20', N'3200', N'0', N'3', N'2', N'900', N'1450', N'239')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713022007', N'Finest Veil Leather Cap', N'1', N'0', N'0', N'2', N'2', N'30', N'3200', N'0', N'3', N'2', N'900', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024001', N'Diavolu Cap', N'1', N'1', N'5', N'2', N'4', N'40', N'3400', N'1', N'3', N'2', N'900', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024002', N'Guardian''s Cap', N'1', N'1', N'5', N'2', N'4', N'45', N'3400', N'1', N'3', N'2', N'900', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024003', N'Uraso Cap', N'1', N'1', N'5', N'2', N'4', N'50', N'3400', N'1', N'3', N'2', N'900', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024004', N'Cool Cap', N'1', N'1', N'5', N'2', N'4', N'55', N'3400', N'1', N'3', N'2', N'900', N'8860', N'1461')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024005', N'Ithrojay Cap', N'1', N'1', N'5', N'2', N'4', N'60', N'3400', N'1', N'3', N'2', N'900', N'10360', N'1709')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024006', N'Finest Facility Leather Cap', N'1', N'1', N'5', N'2', N'4', N'20', N'3400', N'1', N'3', N'2', N'900', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713024007', N'Finest Deliver Leather Cap', N'1', N'1', N'5', N'2', N'4', N'30', N'3400', N'1', N'3', N'2', N'900', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025001', N'Mictlan Cap', N'1', N'1', N'3', N'2', N'5', N'40', N'3600', N'1', N'3', N'2', N'900', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025002', N'Agile Cap', N'1', N'1', N'3', N'2', N'5', N'45', N'3600', N'1', N'3', N'2', N'900', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025003', N'Velita Cap', N'1', N'1', N'3', N'2', N'5', N'50', N'3600', N'1', N'3', N'2', N'900', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025004', N'Fossa Cap', N'1', N'1', N'3', N'2', N'5', N'55', N'3600', N'1', N'3', N'2', N'900', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025005', N'Refrell Cap', N'1', N'1', N'3', N'2', N'5', N'60', N'3600', N'1', N'3', N'2', N'900', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025006', N'Finest Descend Leather Cap', N'1', N'1', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025007', N'Finest Lagrimas Leather Cap', N'1', N'1', N'3', N'2', N'5', N'30', N'3600', N'1', N'3', N'2', N'900', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713025306', N'Finest Garnet Leather Cap', N'1', N'2', N'3', N'2', N'5', N'20', N'3600', N'1', N'3', N'2', N'900', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026001', N'Aaru Cap', N'1', N'2', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026002', N'Angler Cap', N'1', N'2', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026003', N'Uriel Cap', N'1', N'2', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026004', N'Gust Cap', N'1', N'2', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026005', N'Uzalluet Cap', N'1', N'2', N'2', N'2', N'6', N'60', N'4000', N'1', N'3', N'2', N'900', N'11450', N'1889')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026007', N'Finest Catalus Leather Cap', N'1', N'2', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026301', N'Finest Agate Leather Cap', N'1', N'2', N'2', N'2', N'6', N'40', N'4000', N'1', N'3', N'2', N'900', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026302', N'Finest Lapis Lazuli Leather Cap', N'1', N'2', N'2', N'2', N'6', N'45', N'4000', N'1', N'3', N'2', N'900', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026303', N'Finest Aquamarine Leather Cap', N'1', N'2', N'2', N'2', N'6', N'50', N'4000', N'1', N'3', N'2', N'900', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026304', N'Finest Inca Rose Leather Cap', N'1', N'2', N'2', N'2', N'6', N'55', N'4000', N'1', N'3', N'2', N'900', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713026307', N'Finest Carnelian Leather Cap', N'1', N'2', N'2', N'2', N'6', N'30', N'4000', N'1', N'3', N'2', N'900', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031001', N'Spectral Coif', N'1', N'0', N'0', N'3', N'1', N'40', N'3000', N'0', N'0', N'2', N'1800', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031002', N'Sapphire Coif', N'1', N'0', N'0', N'3', N'1', N'45', N'3000', N'0', N'0', N'2', N'1800', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031003', N'Zuhr Coif', N'1', N'0', N'0', N'3', N'1', N'50', N'3000', N'0', N'0', N'2', N'1800', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031004', N'Fedora Coif', N'1', N'0', N'0', N'3', N'1', N'55', N'3000', N'0', N'0', N'2', N'1800', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031005', N'Jaymic Coif', N'1', N'0', N'0', N'3', N'1', N'60', N'3000', N'0', N'0', N'2', N'1800', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031006', N'Finest Banded Chain Helm', N'1', N'0', N'0', N'3', N'1', N'20', N'3000', N'0', N'0', N'2', N'1800', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713031007', N'Finest Birni Chain Helm', N'1', N'0', N'0', N'3', N'1', N'30', N'3000', N'0', N'0', N'2', N'1800', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032001', N'Spectral Coif', N'1', N'0', N'0', N'3', N'2', N'40', N'3200', N'0', N'3', N'2', N'1800', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032002', N'Sapphire Coif', N'1', N'0', N'0', N'3', N'2', N'45', N'3200', N'0', N'3', N'2', N'1800', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032003', N'Zuhr Coif', N'1', N'0', N'0', N'3', N'2', N'50', N'3200', N'0', N'3', N'2', N'1800', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032004', N'Fedora Coif', N'1', N'0', N'0', N'3', N'2', N'55', N'3200', N'0', N'3', N'2', N'1800', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032005', N'Jaymic Coif', N'1', N'0', N'0', N'3', N'2', N'60', N'3200', N'0', N'3', N'2', N'1800', N'9270', N'1530')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032006', N'Finest Banded Chain Helm', N'1', N'0', N'0', N'3', N'2', N'20', N'3200', N'0', N'3', N'2', N'1800', N'1450', N'239')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713032007', N'Finest Birni Chain Helm', N'1', N'0', N'0', N'3', N'2', N'30', N'3200', N'0', N'3', N'2', N'1800', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034001', N'Necuratu Coif', N'1', N'1', N'5', N'3', N'4', N'40', N'3400', N'1', N'3', N'2', N'1800', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034002', N'Crude Coif', N'1', N'1', N'5', N'3', N'4', N'45', N'3400', N'1', N'3', N'2', N'1800', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034003', N'Triton Coif', N'1', N'1', N'5', N'3', N'4', N'50', N'3400', N'1', N'3', N'2', N'1800', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034004', N'Kalavolg Coif', N'1', N'1', N'5', N'3', N'4', N'55', N'3400', N'1', N'3', N'2', N'1800', N'8860', N'1461')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034005', N'Necuratu Coif', N'1', N'1', N'5', N'3', N'4', N'60', N'3400', N'1', N'3', N'2', N'1800', N'10360', N'1709')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034006', N'Finest Brisk Chain Helm', N'1', N'1', N'5', N'3', N'4', N'20', N'3400', N'1', N'3', N'2', N'1800', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713034007', N'Finest Rivert Chain Helm', N'1', N'1', N'5', N'3', N'4', N'30', N'3400', N'1', N'3', N'2', N'1800', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035001', N'Pangolin Coif', N'1', N'1', N'3', N'3', N'5', N'40', N'3600', N'1', N'3', N'2', N'1800', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035002', N'Bared Coif', N'1', N'1', N'3', N'3', N'5', N'45', N'3600', N'1', N'3', N'2', N'1800', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035003', N'Harpy Coif', N'1', N'1', N'3', N'3', N'5', N'50', N'3600', N'1', N'3', N'2', N'1800', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035004', N'Laughter Coif', N'1', N'1', N'3', N'3', N'5', N'55', N'3600', N'1', N'3', N'2', N'1800', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035005', N'Zhichava Coif', N'1', N'1', N'3', N'3', N'5', N'60', N'3600', N'1', N'3', N'2', N'1800', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035006', N'Finest Libion Chain Helm', N'1', N'1', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035007', N'Finest Monochromatic Chain Helm', N'1', N'1', N'3', N'3', N'5', N'30', N'3600', N'1', N'3', N'2', N'1800', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713035306', N'Finest Garnet Chain Helm', N'1', N'2', N'3', N'3', N'5', N'20', N'3600', N'1', N'3', N'2', N'1800', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036001', N'Ekera Coif', N'1', N'2', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'1800', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036002', N'Nettle Coif', N'1', N'2', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036003', N'Poniard Coif', N'1', N'2', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'1800', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036004', N'Aspis Coif', N'1', N'2', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'1800', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036005', N'Kraloo Coif', N'1', N'2', N'2', N'3', N'6', N'60', N'4000', N'1', N'3', N'2', N'1800', N'11450', N'1889')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036007', N'Finest Surtr Helm', N'1', N'2', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'1800', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036301', N'Finest Agate Helm', N'1', N'2', N'2', N'3', N'6', N'40', N'4000', N'1', N'3', N'2', N'1800', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036302', N'Finest Lapis Lazuli Helm', N'1', N'2', N'2', N'3', N'6', N'45', N'4000', N'1', N'3', N'2', N'1800', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036303', N'Finest Aquamarine Helm', N'1', N'2', N'2', N'3', N'6', N'50', N'4000', N'1', N'3', N'2', N'1800', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036304', N'Finest Inca Rose Helm', N'1', N'2', N'2', N'3', N'6', N'55', N'4000', N'1', N'3', N'2', N'1800', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713036307', N'Finest Carnelian Helm', N'1', N'2', N'2', N'3', N'6', N'30', N'4000', N'1', N'3', N'2', N'1800', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041001', N'Ethereal Helm', N'1', N'0', N'0', N'4', N'1', N'40', N'3000', N'0', N'0', N'2', N'3400', N'4270', N'705')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041002', N'Kalypsys Helm', N'1', N'0', N'0', N'4', N'1', N'45', N'3000', N'0', N'0', N'2', N'3400', N'5240', N'864')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041003', N'Lorelei Helm', N'1', N'0', N'0', N'4', N'1', N'50', N'3000', N'0', N'0', N'2', N'3400', N'6300', N'1039')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041004', N'Titan Helm', N'1', N'0', N'0', N'4', N'1', N'55', N'3000', N'0', N'0', N'2', N'3400', N'7460', N'1230')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041005', N'Chromatic Helm', N'1', N'0', N'0', N'4', N'1', N'60', N'3000', N'0', N'0', N'2', N'3400', N'8720', N'1438')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041006', N'Finest Transitional War Helm', N'1', N'0', N'0', N'4', N'1', N'20', N'3000', N'0', N'0', N'2', N'3400', N'1370', N'226')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713041007', N'Finest Raven War Helm', N'1', N'0', N'0', N'4', N'1', N'30', N'3000', N'0', N'0', N'2', N'3400', N'2630', N'434')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042001', N'Ethereal Helm', N'1', N'0', N'0', N'4', N'2', N'40', N'3200', N'0', N'3', N'2', N'3400', N'4540', N'749')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042002', N'Kalypsys Helm', N'1', N'0', N'0', N'4', N'2', N'45', N'3200', N'0', N'3', N'2', N'3400', N'5570', N'919')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042003', N'Lorelei Helm', N'1', N'0', N'0', N'4', N'2', N'50', N'3200', N'0', N'3', N'2', N'3400', N'6700', N'1105')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042004', N'Titan Helm', N'1', N'0', N'0', N'4', N'2', N'55', N'3200', N'0', N'3', N'2', N'3400', N'7930', N'1309')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042005', N'Chromatic Helm', N'1', N'0', N'0', N'4', N'2', N'60', N'3200', N'0', N'3', N'2', N'3400', N'9270', N'1530')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042006', N'Finest Transitional War Helm', N'1', N'0', N'0', N'4', N'2', N'20', N'3200', N'0', N'3', N'2', N'3400', N'1450', N'239')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713042007', N'Finest Raven War Helm', N'1', N'0', N'0', N'4', N'2', N'30', N'3200', N'0', N'3', N'2', N'3400', N'2800', N'462')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044001', N'Noble Helm', N'1', N'1', N'5', N'4', N'4', N'40', N'3400', N'1', N'3', N'2', N'3400', N'5070', N'837')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044002', N'Morgana Helm', N'1', N'1', N'5', N'4', N'4', N'45', N'3400', N'1', N'3', N'2', N'3400', N'6220', N'1026')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044003', N'Arcanite Helm', N'1', N'1', N'5', N'4', N'4', N'50', N'3400', N'1', N'3', N'2', N'3400', N'7490', N'1236')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044004', N'Kharavela Helm', N'1', N'1', N'5', N'4', N'4', N'55', N'3400', N'1', N'3', N'2', N'3400', N'8860', N'1461')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044005', N'Clockwork Helm', N'1', N'1', N'5', N'4', N'4', N'60', N'3400', N'1', N'3', N'2', N'3400', N'10360', N'1709')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044006', N'Finest Effort War Helm', N'1', N'1', N'5', N'4', N'4', N'20', N'3400', N'1', N'3', N'2', N'3400', N'1620', N'267')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713044007', N'Finest Empulroy War Helm', N'1', N'1', N'5', N'4', N'4', N'30', N'3400', N'1', N'3', N'2', N'3400', N'3130', N'516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045001', N'Brave Helm', N'1', N'1', N'3', N'4', N'5', N'40', N'3600', N'1', N'3', N'2', N'3400', N'5340', N'881')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045002', N'Crypt War Helm', N'1', N'1', N'3', N'4', N'5', N'45', N'3600', N'1', N'3', N'2', N'3400', N'6550', N'1081')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045003', N'Celestine Helm', N'1', N'1', N'3', N'4', N'5', N'50', N'3600', N'1', N'3', N'2', N'3400', N'7880', N'1300')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045004', N'Era Helm', N'1', N'1', N'3', N'4', N'5', N'55', N'3600', N'1', N'3', N'2', N'3400', N'9330', N'1540')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045005', N'Blaghty Helm', N'1', N'1', N'3', N'4', N'5', N'60', N'3600', N'1', N'3', N'2', N'3400', N'10900', N'1798')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045006', N'Finest Blaze War Helm', N'1', N'1', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045007', N'Finest Fandom-Versus War Helm', N'1', N'1', N'3', N'4', N'5', N'30', N'3600', N'1', N'3', N'2', N'3400', N'3290', N'543')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713045306', N'Finest Garnet War Helm', N'1', N'2', N'3', N'4', N'5', N'20', N'3600', N'1', N'3', N'2', N'3400', N'1710', N'282')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046001', N'Stygia Helm', N'1', N'2', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'3400', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046002', N'Vengeance Helm', N'1', N'2', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046003', N'Willas Helm', N'1', N'2', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'3400', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046004', N'Camilla Helm', N'1', N'2', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'3400', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046005', N'Foiblo Helm', N'1', N'2', N'2', N'4', N'6', N'60', N'4000', N'1', N'3', N'2', N'3400', N'11450', N'1889')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046007', N'Finest Baldr Helm', N'1', N'2', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'3400', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046301', N'Finest Agate Helm', N'1', N'2', N'2', N'4', N'6', N'40', N'4000', N'1', N'3', N'2', N'3400', N'5610', N'926')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046302', N'Finest Lapis Lazuli Helm', N'1', N'2', N'2', N'4', N'6', N'45', N'4000', N'1', N'3', N'2', N'3400', N'6880', N'1135')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046303', N'Finest Aquamarine Helm', N'1', N'2', N'2', N'4', N'6', N'50', N'4000', N'1', N'3', N'2', N'3400', N'8270', N'1365')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046304', N'Finest Inca Rose Helm', N'1', N'2', N'2', N'4', N'6', N'55', N'4000', N'1', N'3', N'2', N'3400', N'9800', N'1617')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'713046307', N'Finest Carnelian Helm', N'1', N'2', N'2', N'4', N'6', N'30', N'4000', N'1', N'3', N'2', N'3400', N'3450', N'569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011001', N'Aura Leggings', N'1', N'0', N'0', N'1', N'1', N'40', N'4500', N'0', N'0', N'2', N'1100', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011002', N'Arcane Leggings', N'1', N'0', N'0', N'1', N'1', N'45', N'4500', N'0', N'0', N'2', N'1100', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011003', N'Gior Leggings', N'1', N'0', N'0', N'1', N'1', N'50', N'4500', N'0', N'0', N'2', N'1100', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011004', N'Oukase Leggings', N'1', N'0', N'0', N'1', N'1', N'55', N'4500', N'0', N'0', N'2', N'1100', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011005', N'Kyaglu Leggings', N'1', N'0', N'0', N'1', N'1', N'60', N'4500', N'0', N'0', N'2', N'1100', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011006', N'Top Quality Lambswool Leggings', N'1', N'0', N'0', N'1', N'1', N'20', N'4500', N'0', N'0', N'2', N'1100', N'1920', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714011007', N'Finest Shroud Leggings', N'1', N'0', N'0', N'1', N'1', N'30', N'4500', N'0', N'0', N'2', N'1100', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012001', N'Aura Leggings', N'1', N'0', N'0', N'1', N'2', N'40', N'5000', N'0', N'3', N'2', N'1100', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012002', N'Arcane Leggings', N'1', N'0', N'0', N'1', N'2', N'45', N'5000', N'0', N'3', N'2', N'1100', N'7790', N'1285')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012003', N'Gior Leggings', N'1', N'0', N'0', N'1', N'2', N'50', N'5000', N'0', N'3', N'2', N'1100', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012004', N'Oukase Leggings', N'1', N'0', N'0', N'1', N'2', N'55', N'5000', N'0', N'3', N'2', N'1100', N'11100', N'1831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012005', N'Kyaglu Leggings', N'1', N'0', N'0', N'1', N'2', N'60', N'5000', N'0', N'3', N'2', N'1100', N'12960', N'2138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012006', N'Top Quality Lambswool Leggings', N'1', N'0', N'0', N'1', N'2', N'20', N'5000', N'0', N'3', N'2', N'1100', N'2040', N'337')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714012007', N'Finest Shroud Leggings', N'1', N'0', N'0', N'1', N'2', N'30', N'5000', N'0', N'3', N'2', N'1100', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014001', N'Shady Leggings', N'1', N'1', N'5', N'1', N'4', N'40', N'5500', N'1', N'3', N'2', N'1100', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014002', N'Charmed Leggings', N'1', N'1', N'5', N'1', N'4', N'45', N'5500', N'1', N'3', N'2', N'1100', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014003', N'Knit Leggings', N'1', N'1', N'5', N'1', N'4', N'50', N'5500', N'1', N'3', N'2', N'1100', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014004', N'Falcata Leggings', N'1', N'1', N'5', N'1', N'4', N'55', N'5500', N'1', N'3', N'2', N'1100', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014005', N'Yeroti Leggings', N'1', N'1', N'5', N'1', N'4', N'60', N'5500', N'1', N'3', N'2', N'1100', N'14490', N'2391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014006', N'Finest Forbidden Leggings', N'1', N'1', N'5', N'1', N'4', N'20', N'5500', N'1', N'3', N'2', N'1100', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714014007', N'Finest Indent Leggings', N'1', N'1', N'5', N'1', N'4', N'30', N'5500', N'1', N'3', N'2', N'1100', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015001', N'Rainbow Leggings', N'1', N'1', N'3', N'1', N'5', N'40', N'6000', N'1', N'3', N'2', N'1100', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015002', N'Gnomish Leggings', N'1', N'1', N'3', N'1', N'5', N'45', N'6000', N'1', N'3', N'2', N'1100', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015003', N'Joyeuse Leggings', N'1', N'1', N'3', N'1', N'5', N'50', N'6000', N'1', N'3', N'2', N'1100', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015004', N'Protector Leggings', N'1', N'1', N'3', N'1', N'5', N'55', N'6000', N'1', N'3', N'2', N'1100', N'13060', N'2154')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015005', N'Amarow Leggings', N'1', N'1', N'3', N'1', N'5', N'60', N'6000', N'1', N'3', N'2', N'1100', N'15250', N'2516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015006', N'Finest Ventus Leggings', N'1', N'1', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015007', N'Finest Caligo Leggings', N'1', N'1', N'3', N'1', N'5', N'30', N'6000', N'1', N'3', N'2', N'1100', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714015306', N'Finest Garnet Leggings', N'1', N'2', N'3', N'1', N'5', N'20', N'6000', N'1', N'3', N'2', N'1100', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016001', N'Jigoku Leggings', N'1', N'2', N'2', N'1', N'6', N'40', N'6500', N'1', N'3', N'2', N'1100', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016002', N'Quintara Leggings', N'1', N'2', N'2', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016003', N'Yufnae Leggings', N'1', N'2', N'2', N'1', N'6', N'50', N'6500', N'1', N'3', N'2', N'1100', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016004', N'Kilij-Kalkhan Leggings', N'1', N'2', N'2', N'1', N'6', N'55', N'6500', N'1', N'3', N'2', N'1100', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016005', N'Opaline Leggings', N'1', N'2', N'2', N'1', N'6', N'60', N'6500', N'1', N'3', N'2', N'1100', N'16010', N'2642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016007', N'Finest Valfare Leggings', N'1', N'2', N'2', N'1', N'6', N'30', N'6500', N'1', N'3', N'2', N'1100', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016301', N'Finest Agate Leggings', N'1', N'2', N'2', N'1', N'6', N'40', N'6500', N'1', N'3', N'2', N'1100', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016302', N'Finest Lapis Lazuli Leggings', N'1', N'2', N'2', N'1', N'6', N'45', N'6500', N'1', N'3', N'2', N'1100', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016303', N'Finest Aquamarine Leggings', N'1', N'2', N'2', N'1', N'6', N'50', N'6500', N'1', N'3', N'2', N'1100', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016304', N'Finest Inca Rose Leggings', N'1', N'2', N'2', N'1', N'6', N'55', N'6500', N'1', N'3', N'2', N'1100', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714016307', N'Finest Carnelian Leggings', N'1', N'2', N'2', N'1', N'6', N'30', N'6500', N'1', N'3', N'2', N'1100', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021001', N'Callous Pants', N'1', N'0', N'0', N'2', N'1', N'40', N'4500', N'0', N'0', N'2', N'1600', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021002', N'Oiled Pants', N'1', N'0', N'0', N'2', N'1', N'45', N'4500', N'0', N'0', N'2', N'1600', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021003', N'Telek Pants', N'1', N'0', N'0', N'2', N'1', N'50', N'4500', N'0', N'0', N'2', N'1600', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021004', N'Alifae Pants', N'1', N'0', N'0', N'2', N'1', N'55', N'4500', N'0', N'0', N'2', N'1600', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021005', N'Groovy Pants', N'1', N'0', N'0', N'2', N'1', N'60', N'4500', N'0', N'0', N'2', N'1600', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021006', N'Finest Suede Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'20', N'4500', N'0', N'0', N'2', N'1600', N'1920', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714021007', N'Finest Veil Leather Leggings', N'1', N'0', N'0', N'2', N'1', N'30', N'4500', N'0', N'0', N'2', N'1600', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022001', N'Callous Pants', N'1', N'0', N'0', N'2', N'2', N'40', N'5000', N'0', N'3', N'2', N'1600', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022002', N'Oiled Pants', N'1', N'0', N'0', N'2', N'2', N'45', N'5000', N'0', N'3', N'2', N'1600', N'7790', N'1285')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022003', N'Telek Pants', N'1', N'0', N'0', N'2', N'2', N'50', N'5000', N'0', N'3', N'2', N'1600', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022004', N'Alifae Pants', N'1', N'0', N'0', N'2', N'2', N'55', N'5000', N'0', N'3', N'2', N'1600', N'11100', N'1831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022005', N'Groovy Pants', N'1', N'0', N'0', N'2', N'2', N'60', N'5000', N'0', N'3', N'2', N'1600', N'12960', N'2138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022006', N'Finest Suede Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'20', N'5000', N'0', N'3', N'2', N'1600', N'2040', N'337')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714022007', N'Finest Veil Leather Leggings', N'1', N'0', N'0', N'2', N'2', N'30', N'5000', N'0', N'3', N'2', N'1600', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024001', N'Diavolu Pants', N'1', N'1', N'5', N'2', N'4', N'40', N'5500', N'1', N'3', N'2', N'1600', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024002', N'Guardian''s Pants', N'1', N'1', N'5', N'2', N'4', N'45', N'5500', N'1', N'3', N'2', N'1600', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024003', N'Uraso Pants', N'1', N'1', N'5', N'2', N'4', N'50', N'5500', N'1', N'3', N'2', N'1600', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024004', N'Cool Pants', N'1', N'1', N'5', N'2', N'4', N'55', N'5500', N'1', N'3', N'2', N'1600', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024005', N'Ithrojay Pants', N'1', N'1', N'5', N'2', N'4', N'60', N'5500', N'1', N'3', N'2', N'1600', N'14490', N'2391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024006', N'Finest Facility Leather Leggings', N'1', N'1', N'5', N'2', N'4', N'20', N'5500', N'1', N'3', N'2', N'1600', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714024007', N'Finest Deliver Leather Leggings', N'1', N'1', N'5', N'2', N'4', N'30', N'5500', N'1', N'3', N'2', N'1600', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025001', N'Mictlan Pants', N'1', N'1', N'3', N'2', N'5', N'40', N'6000', N'1', N'3', N'2', N'1600', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025002', N'Agile Pants', N'1', N'1', N'3', N'2', N'5', N'45', N'6000', N'1', N'3', N'2', N'1600', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025003', N'Velita Pants', N'1', N'1', N'3', N'2', N'5', N'50', N'6000', N'1', N'3', N'2', N'1600', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025004', N'Fossa Pants', N'1', N'1', N'3', N'2', N'5', N'55', N'6000', N'1', N'3', N'2', N'1600', N'13060', N'2154')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025005', N'Refrell Pants', N'1', N'1', N'3', N'2', N'5', N'60', N'6000', N'1', N'3', N'2', N'1600', N'15250', N'2516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025006', N'Finest Descend Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025007', N'Finest Lagrimas Leather Leggings', N'1', N'1', N'3', N'2', N'5', N'30', N'6000', N'1', N'3', N'2', N'1600', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714025306', N'Finest Garnet Leather Leggings', N'1', N'2', N'3', N'2', N'5', N'20', N'6000', N'1', N'3', N'2', N'1600', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026001', N'Aaru Leather Pants', N'1', N'2', N'2', N'2', N'6', N'40', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026002', N'Angler Pants', N'1', N'2', N'2', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026003', N'Uriel Pants', N'1', N'2', N'2', N'2', N'6', N'50', N'6500', N'1', N'3', N'2', N'1600', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026004', N'Gust Pants', N'1', N'2', N'2', N'2', N'6', N'55', N'6500', N'1', N'3', N'2', N'1600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026005', N'Uzalluet Pants', N'1', N'2', N'2', N'2', N'6', N'60', N'6500', N'1', N'3', N'2', N'1600', N'16010', N'2642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026007', N'Finest Catalus Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'30', N'6500', N'1', N'3', N'2', N'1600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026301', N'Finest Agate Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'40', N'6500', N'1', N'3', N'2', N'1600', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026302', N'Finest Lapis Lazuli Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'45', N'6500', N'1', N'3', N'2', N'1600', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026303', N'Finest Aquamarine Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'50', N'6500', N'1', N'3', N'2', N'1600', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026304', N'Finest Inca Rose Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'55', N'6500', N'1', N'3', N'2', N'1600', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714026307', N'Finest Carnelian Leather Leggings', N'1', N'2', N'2', N'2', N'6', N'30', N'6500', N'1', N'3', N'2', N'1600', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031001', N'Spectral Chausses', N'1', N'0', N'0', N'3', N'1', N'40', N'4500', N'0', N'0', N'2', N'2400', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031002', N'Sapphire Chausses', N'1', N'0', N'0', N'3', N'1', N'45', N'4500', N'0', N'0', N'2', N'2400', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031003', N'Zuhr Chausses', N'1', N'0', N'0', N'3', N'1', N'50', N'4500', N'0', N'0', N'2', N'2400', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031004', N'Fedora Chausses', N'1', N'0', N'0', N'3', N'1', N'55', N'4500', N'0', N'0', N'2', N'2400', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031005', N'Jaymic Chausses', N'1', N'0', N'0', N'3', N'1', N'60', N'4500', N'0', N'0', N'2', N'2400', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031006', N'Finest Banded Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'20', N'4500', N'0', N'0', N'2', N'2400', N'1920', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714031007', N'Finest Birni Chain Greaves', N'1', N'0', N'0', N'3', N'1', N'30', N'4500', N'0', N'0', N'2', N'2400', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032001', N'Spectral Chausses', N'1', N'0', N'0', N'3', N'2', N'40', N'5000', N'0', N'3', N'2', N'2400', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032002', N'Sapphire Chausses', N'1', N'0', N'0', N'3', N'2', N'45', N'5000', N'0', N'3', N'2', N'2400', N'7790', N'1285')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032003', N'Zuhr Chausses', N'1', N'0', N'0', N'3', N'2', N'50', N'5000', N'0', N'3', N'2', N'2400', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032004', N'Fedora Chausses', N'1', N'0', N'0', N'3', N'2', N'55', N'5000', N'0', N'3', N'2', N'2400', N'11100', N'1831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032005', N'Jaymic Chausses', N'1', N'0', N'0', N'3', N'2', N'60', N'5000', N'0', N'3', N'2', N'2400', N'12960', N'2138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032006', N'Finest Banded Chain Greaves', N'1', N'0', N'0', N'3', N'2', N'20', N'5000', N'0', N'3', N'2', N'2400', N'2040', N'337')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714032007', N'Finest Birni Chain Greaves', N'1', N'0', N'0', N'3', N'2', N'30', N'5000', N'0', N'3', N'2', N'2400', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034001', N'Necuratu Chausses', N'1', N'1', N'5', N'3', N'4', N'40', N'5500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034002', N'Crude Chausses', N'1', N'1', N'5', N'3', N'4', N'45', N'5500', N'1', N'3', N'2', N'2400', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034003', N'Triton Chausses', N'1', N'1', N'5', N'3', N'4', N'50', N'5500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034004', N'Kalavolg Chausses', N'1', N'1', N'5', N'3', N'4', N'55', N'5500', N'1', N'3', N'2', N'2400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034005', N'Necuratu Chausses', N'1', N'1', N'5', N'3', N'4', N'60', N'5500', N'1', N'3', N'2', N'2400', N'14490', N'2391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034006', N'Finest Brisk Chain Greaves', N'1', N'1', N'5', N'3', N'4', N'20', N'5500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714034007', N'Finest Rivert Chain Greaves', N'1', N'1', N'5', N'3', N'4', N'30', N'5500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035001', N'Pangolin Chausses', N'1', N'1', N'3', N'3', N'5', N'40', N'6000', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035002', N'Bared Chausses', N'1', N'1', N'3', N'3', N'5', N'45', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035003', N'Harpy Chausses', N'1', N'1', N'3', N'3', N'5', N'50', N'6000', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035004', N'Laughter Chausses', N'1', N'1', N'3', N'3', N'5', N'55', N'6000', N'1', N'3', N'2', N'2400', N'13060', N'2154')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035005', N'Zhichava Chausses', N'1', N'1', N'3', N'3', N'5', N'60', N'6000', N'1', N'3', N'2', N'2400', N'15250', N'2516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035006', N'Finest Libion Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035007', N'Finest Monochromatic Chain Greaves', N'1', N'1', N'3', N'3', N'5', N'30', N'6000', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714035306', N'Finest Garnet Chain Greaves', N'1', N'2', N'3', N'3', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036001', N'Ekera Chausses', N'1', N'2', N'2', N'3', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036002', N'Nettle Chausses', N'1', N'2', N'2', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036003', N'Poniard Chausses', N'1', N'2', N'2', N'3', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036004', N'Aspis Chausses', N'1', N'2', N'2', N'3', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036005', N'Kraloo Chausses', N'1', N'2', N'2', N'3', N'6', N'60', N'6500', N'1', N'3', N'2', N'2400', N'16010', N'2642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036007', N'Finest Surtr Greaves', N'1', N'2', N'2', N'3', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036301', N'Finest Agate Greaves', N'1', N'2', N'2', N'3', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036302', N'Finest Lapis Lazuli Greaves', N'1', N'2', N'2', N'3', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036303', N'Finest Aquamarine Greaves', N'1', N'2', N'2', N'3', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036304', N'Finest Inca Rose Greaves', N'1', N'2', N'2', N'3', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714036307', N'Finest Carnelian Greaves', N'1', N'2', N'2', N'3', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041001', N'Ethereal Greaves', N'1', N'0', N'0', N'4', N'1', N'40', N'4500', N'0', N'0', N'2', N'2400', N'5980', N'986')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041002', N'Kalypsys Greaves', N'1', N'0', N'0', N'4', N'1', N'45', N'4500', N'0', N'0', N'2', N'2400', N'7340', N'1211')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041003', N'Lorelei Greaves', N'1', N'0', N'0', N'4', N'1', N'50', N'4500', N'0', N'0', N'2', N'2400', N'8820', N'1455')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041004', N'Titan Greaves', N'1', N'0', N'0', N'4', N'1', N'55', N'4500', N'0', N'0', N'2', N'2400', N'10450', N'1724')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041005', N'Chromatic Greaves', N'1', N'0', N'0', N'4', N'1', N'60', N'4500', N'0', N'0', N'2', N'2400', N'12200', N'2013')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041006', N'Finest Transitional War Greaves', N'1', N'0', N'0', N'4', N'1', N'20', N'4500', N'0', N'0', N'2', N'2400', N'1920', N'317')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714041007', N'Finest Raven War Greaves', N'1', N'0', N'0', N'4', N'1', N'30', N'4500', N'0', N'0', N'2', N'2400', N'3680', N'607')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042001', N'Ethereal Greaves', N'1', N'0', N'0', N'4', N'2', N'40', N'5000', N'0', N'3', N'2', N'2400', N'6360', N'1049')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042002', N'Kalypsys Greaves', N'1', N'0', N'0', N'4', N'2', N'45', N'5000', N'0', N'3', N'2', N'2400', N'7790', N'1285')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042003', N'Lorelei Greaves', N'1', N'0', N'0', N'4', N'2', N'50', N'5000', N'0', N'3', N'2', N'2400', N'9380', N'1547')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042004', N'Titan Greaves', N'1', N'0', N'0', N'4', N'2', N'55', N'5000', N'0', N'3', N'2', N'2400', N'11100', N'1831')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042005', N'Chromatic Greaves', N'1', N'0', N'0', N'4', N'2', N'60', N'5000', N'0', N'3', N'2', N'2400', N'12960', N'2138')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042006', N'Finest Transitional War Greaves', N'1', N'0', N'0', N'4', N'2', N'20', N'5000', N'0', N'3', N'2', N'2400', N'2040', N'337')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714042007', N'Finest Raven War Greaves', N'1', N'0', N'0', N'4', N'2', N'30', N'5000', N'0', N'3', N'2', N'2400', N'3910', N'645')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044001', N'Noble Greaves', N'1', N'1', N'5', N'4', N'4', N'40', N'5500', N'1', N'3', N'2', N'2400', N'7110', N'1173')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044002', N'Morgana Greaves', N'1', N'1', N'5', N'4', N'4', N'45', N'5500', N'1', N'3', N'2', N'2400', N'8710', N'1437')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044003', N'Arcanite Greaves', N'1', N'1', N'5', N'4', N'4', N'50', N'5500', N'1', N'3', N'2', N'2400', N'10480', N'1729')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044004', N'Kharavela Greaves', N'1', N'1', N'5', N'4', N'4', N'55', N'5500', N'1', N'3', N'2', N'2400', N'12410', N'2048')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044005', N'Clockwork Greaves', N'1', N'1', N'5', N'4', N'4', N'60', N'5500', N'1', N'3', N'2', N'2400', N'14490', N'2391')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044006', N'Finest Effort War Greaves', N'1', N'1', N'5', N'4', N'4', N'20', N'5500', N'1', N'3', N'2', N'2400', N'2280', N'376')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714044007', N'Finest Empulroy War Greaves', N'1', N'1', N'5', N'4', N'4', N'30', N'5500', N'1', N'3', N'2', N'2400', N'4370', N'721')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045001', N'Brave Greaves', N'1', N'1', N'3', N'4', N'5', N'40', N'6000', N'1', N'3', N'2', N'2400', N'7480', N'1234')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045002', N'Crypt War Greaves', N'1', N'1', N'3', N'4', N'5', N'45', N'6000', N'1', N'3', N'2', N'2400', N'9170', N'1513')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045003', N'Celestine Greaves', N'1', N'1', N'3', N'4', N'5', N'50', N'6000', N'1', N'3', N'2', N'2400', N'11030', N'1820')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045004', N'Era Greaves', N'1', N'1', N'3', N'4', N'5', N'55', N'6000', N'1', N'3', N'2', N'2400', N'13060', N'2154')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045005', N'Blaghty Greaves', N'1', N'1', N'3', N'4', N'5', N'60', N'6000', N'1', N'3', N'2', N'2400', N'15250', N'2516')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045006', N'Finest Blaze War Greaves', N'1', N'1', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045007', N'Finest Fandom-Versus War Greaves', N'1', N'1', N'3', N'4', N'5', N'30', N'6000', N'1', N'3', N'2', N'2400', N'4600', N'759')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714045306', N'Finest Garnet War Greaves', N'1', N'2', N'3', N'4', N'5', N'20', N'6000', N'1', N'3', N'2', N'2400', N'2400', N'396')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046001', N'Stygia Greaves', N'1', N'2', N'2', N'4', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046002', N'Vengeance Greaves', N'1', N'2', N'2', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046003', N'Willas Greaves', N'1', N'2', N'2', N'4', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046004', N'Camilla Greaves', N'1', N'2', N'2', N'4', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046005', N'Foiblo Greaves', N'1', N'2', N'2', N'4', N'6', N'60', N'6500', N'1', N'3', N'2', N'2400', N'16010', N'2642')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046007', N'Finest Baldr Greaves', N'1', N'2', N'2', N'4', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046301', N'Finest Agate Greaves', N'1', N'2', N'2', N'4', N'6', N'40', N'6500', N'1', N'3', N'2', N'2400', N'7850', N'1295')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046302', N'Finest Lapis Lazuli Greaves', N'1', N'2', N'2', N'4', N'6', N'45', N'6500', N'1', N'3', N'2', N'2400', N'9630', N'1589')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046303', N'Finest Aquamarine Greaves', N'1', N'2', N'2', N'4', N'6', N'50', N'6500', N'1', N'3', N'2', N'2400', N'11580', N'1910')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046304', N'Finest Inca Rose Greaves', N'1', N'2', N'2', N'4', N'6', N'55', N'6500', N'1', N'3', N'2', N'2400', N'13710', N'2262')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'714046307', N'Finest Carnelian Greaves', N'1', N'2', N'2', N'4', N'6', N'30', N'6500', N'1', N'3', N'2', N'2400', N'4830', N'797')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011001', N'Aura Slippers', N'1', N'0', N'0', N'1', N'1', N'40', N'4000', N'0', N'0', N'2', N'600', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011002', N'Louvette Slippers', N'1', N'0', N'0', N'1', N'1', N'45', N'4000', N'0', N'0', N'2', N'600', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011003', N'Hollis Slippers', N'1', N'0', N'0', N'1', N'1', N'50', N'4000', N'0', N'0', N'2', N'600', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011004', N'Tizona Slippers', N'1', N'0', N'0', N'1', N'1', N'55', N'4000', N'0', N'0', N'2', N'600', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011005', N'Remy Slippers', N'1', N'0', N'0', N'1', N'1', N'60', N'4000', N'0', N'0', N'2', N'600', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011006', N'Top Quality Lambswool Shoes', N'1', N'0', N'0', N'1', N'1', N'20', N'4000', N'0', N'0', N'2', N'600', N'1640', N'271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715011007', N'Finest Shroud Shoes', N'1', N'0', N'0', N'1', N'1', N'30', N'4000', N'0', N'0', N'2', N'600', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012001', N'Aura Slippers', N'1', N'0', N'0', N'1', N'2', N'40', N'4200', N'0', N'3', N'2', N'600', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012002', N'Louvette Slippers', N'1', N'0', N'0', N'1', N'2', N'45', N'4200', N'0', N'3', N'2', N'600', N'6680', N'1102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012003', N'Hollis Slippers', N'1', N'0', N'0', N'1', N'2', N'50', N'4200', N'0', N'3', N'2', N'600', N'8040', N'1326')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012004', N'Tizona Slippers', N'1', N'0', N'0', N'1', N'2', N'55', N'4200', N'0', N'3', N'2', N'600', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012005', N'Remy Slippers', N'1', N'0', N'0', N'1', N'2', N'60', N'4200', N'0', N'3', N'2', N'600', N'11120', N'1834')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012006', N'Top Quality Lambswool Shoes', N'1', N'0', N'0', N'1', N'2', N'20', N'4200', N'0', N'3', N'2', N'600', N'1740', N'287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715012007', N'Finest Shroud Shoes', N'1', N'0', N'0', N'1', N'2', N'30', N'4200', N'0', N'3', N'2', N'600', N'3360', N'554')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014001', N'Shady Slippers', N'1', N'1', N'5', N'1', N'4', N'40', N'4400', N'1', N'3', N'2', N'600', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014002', N'Charmed Slippers', N'1', N'1', N'5', N'1', N'4', N'45', N'4400', N'1', N'3', N'2', N'600', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014003', N'Knit Slippers', N'1', N'1', N'5', N'1', N'4', N'50', N'4400', N'1', N'3', N'2', N'600', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014004', N'Falcata Slippers', N'1', N'1', N'5', N'1', N'4', N'55', N'4400', N'1', N'3', N'2', N'600', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014005', N'Yeroti Slippers', N'1', N'1', N'5', N'1', N'4', N'60', N'4400', N'1', N'3', N'2', N'600', N'12430', N'2051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014006', N'Finest Forbidden Shoes', N'1', N'1', N'5', N'1', N'4', N'20', N'4400', N'1', N'3', N'2', N'600', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715014007', N'Finest Indent Shoes', N'1', N'1', N'5', N'1', N'4', N'30', N'4400', N'1', N'3', N'2', N'600', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015001', N'Rainbow Slippers', N'1', N'1', N'3', N'1', N'5', N'40', N'4600', N'1', N'3', N'2', N'600', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015002', N'Gnomish Slippers', N'1', N'1', N'3', N'1', N'5', N'45', N'4600', N'1', N'3', N'2', N'600', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015003', N'Joyeuse Slippers', N'1', N'1', N'3', N'1', N'5', N'50', N'4600', N'1', N'3', N'2', N'600', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015004', N'Protector Slippers', N'1', N'1', N'3', N'1', N'5', N'55', N'4600', N'1', N'3', N'2', N'600', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015005', N'Amarow Slippers', N'1', N'1', N'3', N'1', N'5', N'60', N'4600', N'1', N'3', N'2', N'600', N'13080', N'2158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015006', N'Finest Ventus Shoes', N'1', N'1', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015007', N'Finest Caligo Shoes', N'1', N'1', N'3', N'1', N'5', N'30', N'4600', N'1', N'3', N'2', N'600', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715015306', N'Finest Garnet Shoes', N'1', N'2', N'3', N'1', N'5', N'20', N'4600', N'1', N'3', N'2', N'600', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016001', N'Jigoku Slippers', N'1', N'2', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016002', N'Quintara Slippers', N'1', N'2', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016003', N'Yufnae Slippers', N'1', N'2', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'9930', N'1639')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016004', N'Kilij-Kalkhan Slippers', N'1', N'2', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016005', N'Opaline Slippers', N'1', N'2', N'2', N'1', N'6', N'60', N'5000', N'1', N'3', N'2', N'600', N'13730', N'2266')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016007', N'Finest Valfare Shoes', N'1', N'2', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016301', N'Finest Agate Shoes', N'1', N'2', N'2', N'1', N'6', N'40', N'5000', N'1', N'3', N'2', N'600', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016302', N'Finest Lapis Lazuli Shoes', N'1', N'2', N'2', N'1', N'6', N'45', N'5000', N'1', N'3', N'2', N'600', N'8250', N'1361')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016303', N'Finest Aquamarine Shoes', N'1', N'2', N'2', N'1', N'6', N'50', N'5000', N'1', N'3', N'2', N'600', N'9930', N'1639')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016304', N'Finest Inca Rose Shoes', N'1', N'2', N'2', N'1', N'6', N'55', N'5000', N'1', N'3', N'2', N'600', N'11750', N'1939')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715016307', N'Finest Carnelian Shoes', N'1', N'2', N'2', N'1', N'6', N'30', N'5000', N'1', N'3', N'2', N'600', N'4150', N'685')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021001', N'Callous Shoes', N'1', N'0', N'0', N'2', N'1', N'40', N'4000', N'0', N'0', N'2', N'800', N'5130', N'847')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021002', N'Cryption Shoes', N'1', N'0', N'0', N'2', N'1', N'45', N'4000', N'0', N'0', N'2', N'800', N'6290', N'1038')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021003', N'Firey Shoes', N'1', N'0', N'0', N'2', N'1', N'50', N'4000', N'0', N'0', N'2', N'800', N'7570', N'1249')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021004', N'Bogart Shoes', N'1', N'0', N'0', N'2', N'1', N'55', N'4000', N'0', N'0', N'2', N'800', N'8950', N'1477')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021005', N'Hefeydd Shoes', N'1', N'0', N'0', N'2', N'1', N'60', N'4000', N'0', N'0', N'2', N'800', N'10460', N'1725')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021006', N'Finest Suede Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'20', N'4000', N'0', N'0', N'2', N'800', N'1640', N'271')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715021007', N'Finest Veil Leather Shoes', N'1', N'0', N'0', N'2', N'1', N'30', N'4000', N'0', N'0', N'2', N'800', N'3160', N'521')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022001', N'Callous Shoes', N'1', N'0', N'0', N'2', N'2', N'40', N'4200', N'0', N'3', N'2', N'800', N'5450', N'899')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022002', N'Cryption Shoes', N'1', N'0', N'0', N'2', N'2', N'45', N'4200', N'0', N'3', N'2', N'800', N'6680', N'1102')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022003', N'Firey Shoes', N'1', N'0', N'0', N'2', N'2', N'50', N'4200', N'0', N'3', N'2', N'800', N'8040', N'1326')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022004', N'Bogart Shoes', N'1', N'0', N'0', N'2', N'2', N'55', N'4200', N'0', N'3', N'2', N'800', N'9510', N'1569')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022005', N'Hefeydd Shoes', N'1', N'0', N'0', N'2', N'2', N'60', N'4200', N'0', N'3', N'2', N'800', N'11120', N'1834')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022006', N'Finest Suede Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'20', N'4200', N'0', N'3', N'2', N'800', N'1740', N'287')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715022007', N'Finest Veil Leather Shoes', N'1', N'0', N'0', N'2', N'2', N'30', N'4200', N'0', N'3', N'2', N'800', N'3360', N'554')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024001', N'Diavolu Shoes', N'1', N'1', N'5', N'2', N'4', N'40', N'4400', N'1', N'3', N'2', N'800', N'6090', N'1005')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024002', N'Guardian''s Shoes', N'1', N'1', N'5', N'2', N'4', N'45', N'4400', N'1', N'3', N'2', N'800', N'7470', N'1233')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024003', N'Uraso Shoes', N'1', N'1', N'5', N'2', N'4', N'50', N'4400', N'1', N'3', N'2', N'800', N'8990', N'1483')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024004', N'Cool Shoes', N'1', N'1', N'5', N'2', N'4', N'55', N'4400', N'1', N'3', N'2', N'800', N'10630', N'1754')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024005', N'Ithrojay Shoes', N'1', N'1', N'5', N'2', N'4', N'60', N'4400', N'1', N'3', N'2', N'800', N'12430', N'2051')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024006', N'Finest Facility Leather Shoes', N'1', N'1', N'5', N'2', N'4', N'20', N'4400', N'1', N'3', N'2', N'800', N'1950', N'322')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715024007', N'Finest Deliver Leather Shoes', N'1', N'1', N'5', N'2', N'4', N'30', N'4400', N'1', N'3', N'2', N'800', N'3750', N'619')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025001', N'Mictlan Shoes', N'1', N'1', N'3', N'2', N'5', N'40', N'4600', N'1', N'3', N'2', N'800', N'6410', N'1058')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025002', N'Agile Shoes', N'1', N'1', N'3', N'2', N'5', N'45', N'4600', N'1', N'3', N'2', N'800', N'7860', N'1296')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025003', N'Velita Shoes', N'1', N'1', N'3', N'2', N'5', N'50', N'4600', N'1', N'3', N'2', N'800', N'9460', N'1560')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025004', N'Fossa Shoes', N'1', N'1', N'3', N'2', N'5', N'55', N'4600', N'1', N'3', N'2', N'800', N'11190', N'1846')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025005', N'Refrell Shoes', N'1', N'1', N'3', N'2', N'5', N'60', N'4600', N'1', N'3', N'2', N'800', N'13080', N'2158')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025006', N'Finest Descend Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025007', N'Finest Lagrimas Leather Shoes', N'1', N'1', N'3', N'2', N'5', N'30', N'4600', N'1', N'3', N'2', N'800', N'3950', N'652')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715025306', N'Finest Garnet Leather Shoes', N'1', N'2', N'3', N'2', N'5', N'20', N'4600', N'1', N'3', N'2', N'800', N'2050', N'338')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id], [name], [inventory_type], [RestraintType], [ReconstructionMax], [Category], [Branch], [LevelLimit], [max_dur], [is_socket], [max_socket_num], [kind], [weight], [BuyPrice], [SellPrice]) VALUES (N'715026001', N'Aaru Shoes', N'1', N'2', N'2', N'2', N'6', N'40', N'5000', N'1', N'3', N'2', N'800', N'6730', N'1111')
+GO
+
+INSERT INTO [dbo].[Base_ItemTable_All] ([id